update
This commit is contained in:
21
superpage/src/layouts/_components/Footer.astro
Normal file
21
superpage/src/layouts/_components/Footer.astro
Normal 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>
|
||||
© {year} EDUSEG® 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>
|
||||
Reference in New Issue
Block a user