import Image from "next/image"; import Link from "next/link"; import { ArrowUpRight } from "lucide-react"; const categories = [ { title: "Juguetes", subtitle: "Personajes que inspiran", image: "/images/categories/figuras.webp", href: "/catalog?category=Figuras", color: "from-yellow-300 to-orange-400" }, { title: "Peluches", subtitle: "Compañeros para regalar", image: "/images/categories/peluches.webp", href: "/catalog?category=Peluches", color: "from-pink-400 to-fuchsia-500" }, { title: "Mochilas", subtitle: "Estilo para cada aventura", image: "/images/categories/mochilas.webp", href: "/catalog?category=Mochilas", color: "from-cyan-400 to-blue-500" }, { title: "Marvel", subtitle: "Tu héroe favorito", image: "/images/categories/marvel.webp", href: "/catalog?collection=Marvel", color: "from-red-500 to-rose-700" }, ]; export function CategoryTiles() { return
Explora por mundos

Encuentra tu próximo tesoro

Ver todo →
{categories.map((item) => {item.title}

{item.title}

{item.subtitle}

)}
; }