import React from "react"; import githubIcon from "../assets/img/github-icon.png"; import linkedInIcon from "../assets/img/linkedin-icon.png"; import emailIcon from "../assets/img/email-icon.png"; import facebookIcon from "../assets/img/facebook-icon.png"; import phoneIcon from "../assets/img/phone-icon.png"; const defaultSocials = [ { label: "GitHub", href: "https://github.com/Ricearoni1245", icon: githubIcon }, { label: "LinkedIn", href: "https://www.linkedin.com/in/jody-holt-9b19b0256", icon: linkedInIcon }, { label: "Facebook", href: "https://www.facebook.com/jody.holt.7161/", icon: facebookIcon }, { label: "Email", href: "mailto:jholt1008@gmail.com", icon: emailIcon }, { label: "Phone", href: "tel:8066542813", icon: phoneIcon }, ]; type Social = { label: string; href: string; icon?: string }; export function Footer({ year = new Date().getFullYear(), socials = defaultSocials, showBackToTop = true, }: { year?: number; socials?: Social[]; showBackToTop?: boolean; }) { return ( ); }