import { IconPlus } from "@tabler/icons-react"; import { Group, Stack, Text } from "@mantine/core"; import FooterClickable from "@/components/layout/Footer/FooterClickable"; import styles from "./Footer.module.css"; type LinkData = { icon: typeof IconPlus; label: string; href: string; }; type Props = { buttonsData: LinkData[]; }; const FooterButtons = ({ buttonsData }: Props) => { return ( {buttonsData.map(data => ( {data.label} ))} ); }; export default FooterButtons;