import React, { useState } from 'react'; import { motion } from 'framer-motion'; import { Wand2, Download, Star } from 'lucide-react'; import { Button } from './ui/Button'; export const Gallery = ({ items, title = "Most Popular Printables", onRestore }) => { return (

{title}

{items.map((item, index) => (
{item.sections && item.sections.length > 0 && item.sections[0].content_svg ? (
{/* Overlay to prevent interaction with SVG parts */}
) : (
{item.image ? ( {item.title} ) : ( <>

{item.title}

{item.subtitle}

123
)}
)}

{item.title}

Age {item.age} {item.downloads} downloads
))}
); };