diff --git a/src/components/Footer.astro b/src/components/Footer.astro index a6e35b4..4354dad 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,10 +1,14 @@ --- import { GLOBAL } from "../lib/variables"; +import { socials } from "../lib/socials"; import Anchor from "./common/Anchor.astro"; import Section from "./common/Section.astro"; +import SocialIcon from "./common/SocialIcon.astro"; const date = new Date(); const year = date.getFullYear(); + +const footerSocials = socials.filter(social => social.showInFooter); ---