export const Footer = () => { const footerLinks = [ { href: "#projects", text: "Projects", }, { href: "#contact", text: "Contact", }, { href: "#privacy", text: "Privacy Policy", }, { href: "https://stats.uptimerobot.com/83xx6s98Y", text: "Status", external: true, }, ]; return ( <> {footerLinks.map((link, index) => ( <> {index > 0 && " ยท "} {link.external && ( <> {" "} )} {link.text} ))} ); };