From 8cf3dcd7cffb702413c2fbcaa61e32ed8281fcc6 Mon Sep 17 00:00:00 2001 From: anthonyiscoding <142696453+anthonyiscoding@users.noreply.github.com> Date: Tue, 14 Oct 2025 14:45:20 -0500 Subject: [PATCH] Make footer social links optional --- src/components/Footer.astro | 223 ++++++++++++++++++++---------------- 1 file changed, 124 insertions(+), 99 deletions(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index a76ae166eb..7e1fd84c97 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -19,105 +19,130 @@ const hasEducation = siteConfig.education && siteConfig.education.length > 0; {siteConfig.title}

- - - - - - - - - - - - - - - - + { + siteConfig.social?.email && ( + + + + + + + + ) + } + { + siteConfig.social?.linkedin && ( + + + <> + + + + + + + + + + ) + } + + { + siteConfig.social?.twitter && ( + + + <> + + + + + + + ) + } + + { + siteConfig.social?.github && ( + + + <> + + + + + + ) + }