import React from "react"; type Social = { label: string; href: string; icon?: React.ReactNode }; export function Footer({ year = new Date().getFullYear(), socials = [ { label: "GitHub", href: "#" }, { label: "LinkedIn", href: "#" }, { label: "Email", href: "#" }, ], showBackToTop = true, }: { year?: number; socials?: Social[]; showBackToTop?: boolean; }) { return ( ); }