From 7023e9ca9f38c359d859b2457c2d57b91626214a Mon Sep 17 00:00:00 2001 From: prototypa Date: Fri, 12 Apr 2024 10:55:33 -0400 Subject: [PATCH] Small design fix to links --- src/components/widgets/Footer.astro | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/components/widgets/Footer.astro b/src/components/widgets/Footer.astro index 0060220..0831687 100644 --- a/src/components/widgets/Footer.astro +++ b/src/components/widgets/Footer.astro @@ -34,14 +34,17 @@ const { socialLinks = [], secondaryLinks = [], links = [], footNote = '', theme
{SITE?.name}
-
+
{ - secondaryLinks.map(({ text, href }) => ( + secondaryLinks.map(({ text, href }, index) => ( + <> + {index !== 0 ? ' ยท ' : ''} + )) }