update
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
import "~/styles/app.css";
|
||||
import Container from "~/components/Container.astro";
|
||||
import { Icon } from "astro-icon/components";
|
||||
|
||||
const year = new Date().getFullYear();
|
||||
import Header from "./_components/Header.astro";
|
||||
import Footer from "./_components/Footer.astro";
|
||||
---
|
||||
|
||||
<!doctype html>
|
||||
@@ -22,47 +22,15 @@ const year = new Date().getFullYear();
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<Container class="flex items-center py-2.5">
|
||||
<a href="/" aria-label="Página inicial">
|
||||
<Icon name="logos/eduseg" class="w-28 h-auto" />
|
||||
</a>
|
||||
|
||||
<div class="ml-auto">
|
||||
<a
|
||||
href="//app.betaeducacao.com.br"
|
||||
class="flex gap-1 items-center hover:outline rounded-xs"
|
||||
>
|
||||
<Icon
|
||||
name="arrow-left-end-on-rectangle"
|
||||
class="size-5 rotate-180"
|
||||
/>
|
||||
<>Entrar</>
|
||||
</a>
|
||||
</div>
|
||||
</Container>
|
||||
</header>
|
||||
<Header />
|
||||
|
||||
<slot name="nav" />
|
||||
|
||||
<main id="conteudo" data-pagefind-body>
|
||||
<main id="content" data-pagefind-body>
|
||||
<slot />
|
||||
</main>
|
||||
|
||||
<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="#topo"
|
||||
class="underline hover:no-underline flex items-center gap-1 max-lg:self-center"
|
||||
>
|
||||
<Icon name="arrow-up" />
|
||||
<span>Voltar ao início</span>
|
||||
</a>
|
||||
</Container>
|
||||
</footer>
|
||||
<Footer />
|
||||
|
||||
<style is:global>
|
||||
/* https://css-tricks.com/almanac/properties/c/content-visibility/ */
|
||||
|
||||
Reference in New Issue
Block a user