import { SeparatorLine } from "../assets/images"; import { Link } from "./index"; interface FooterProps { links: Link[]; } export default function Footer({ links }: FooterProps) { return ( <>
{links.map((link) => (
{link.name}
{link.name}
))}
separator ); }