Files
saladeaula.digital/superpage/src/layouts/_components/Footer.astro

32 lines
982 B
Plaintext

---
import { Icon } from "astro-icon/components";
import Container from "~/components/Container.astro";
import CookieConsent from "~/components/CookieConsent.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 class="lg:flex gap-2.5">
<p>
&copy; {year} EDUSEG&reg; Todos os direitos reservados. CNPJ15.608.435/0001-90
</p>
<span>&mdash;</span>
<CookieConsent />
</div>
<!-- <button type="button" data-cc="show-preferencesModal"
>
Show preferences modal</button
> -->
<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>