"use client" import { useRouter } from "next/navigation" import { GatoMascota } from "@/components/child/gato-mascota" const activities = [ { id: "lectura", label: "Letras", icon: "Aa", color: "bg-primary" }, { id: "numeros", label: "Números", icon: "123", color: "bg-accent" }, { id: "logros", label: "Mis logros", icon: "⭐", color: "bg-warning" }, ] export default function ChildHome() { const router = useRouter() return (
{activities.map((a) => ( ))}
) }