src/components/Footer.astro (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
--- import Container from '@/components/Container.astro' import { SOCIAL_LINKS } from '@/consts' import SocialIcons from './SocialIcons.astro' --- <footer class="py-4"> <Container> <div class="flex flex-col items-center justify-center gap-y-2 sm:flex-row sm:justify-between" > <div class="flex items-center"> <p class="text-center text-sm text-muted-foreground"> © {new Date().getFullYear()} All rights reserved. </p> </div> <SocialIcons links={SOCIAL_LINKS} /> </div> </Container> </footer> |