"use client" import { MainColor } from "@/app_modules/_global/color"; import { listMenuHomeFooter } from "@/app_modules/home"; import { ActionIcon, Box, Center, SimpleGrid, Stack, Text, } from "@mantine/core"; import { IconUserCircle } from "@tabler/icons-react"; import { useRouter } from "next/navigation"; export default function Test_FooterHome() { const router = useRouter(); return ( {listMenuHomeFooter.map((e) => (
{ console.log("test") }} > {e.icon} {e.name}
))}
console.log("test") } > Profile
); }