diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 2a988f3..726c07b 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -5,11 +5,12 @@ import { socialLinks } from "../data/socialLinks"; const today = new Date(); -const links = socialLinks.concat({ - label: "RSS", - url: "/rss.xml", - icon: "mdi:rss-feed", -}); +const links = socialLinks; +// .concat({ +// label: "RSS", +// url: "/rss.xml", +// icon: "mdi:rss-feed", +// }); ---