This commit is contained in:
2025-04-29 22:34:00 -03:00
parent 9954c352ce
commit 1c85fa4a8d
21 changed files with 360 additions and 273 deletions

View File

@@ -0,0 +1,21 @@
---
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>