Files
saladeaula.digital/superpage/src/layouts/_components/Footer.astro
2025-04-29 22:34:00 -03:00

22 lines
653 B
Plaintext

---
import { Icon } from "astro-icon/components";
import Container from "~/components/Container.astro";
const year = new Date().getFullYear();
---
<footer class="py-2.5 lg:py-6 text-white/70">
<Container class="flex max-lg:flex-col gap-2.5 justify-between">
<div>
&copy; {year} EDUSEG&reg; Todos os direitos reservados. CNPJ15.608.435/0001-90
</div>
<a
href="#top"
class="underline hover:no-underline flex items-center gap-1 max-lg:self-center max-lg:mb-6"
>
<Icon name="arrow-up" />
<span>Voltar ao início</span>
</a>
</Container>
</footer>