doctype
This commit is contained in:
parent
811445a6d0
commit
36187c9620
1 changed files with 196 additions and 191 deletions
|
@ -41,8 +41,9 @@ export async function render(data) {
|
|||
);
|
||||
const CuadradoDatos = await loadSvg("src/assets/cuadrados/datos.svg");
|
||||
const CuadradoEscuelas = await loadSvg("src/assets/cuadrados/escuelas.svg");
|
||||
//TODO: doctype
|
||||
return (
|
||||
"<!doctype html>" +
|
||||
(
|
||||
<html lang="es">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
|
@ -61,7 +62,10 @@ export async function render(data) {
|
|||
</nav>
|
||||
<section class="grid flex-1 grid-cols-1 md:grid-cols-2">
|
||||
<div class="flex min-h-[40vh] items-center justify-center bg-naranja p-[15%]">
|
||||
<LogoGrande containerClass="flex-1 min-w-[25vw]" class="w-100" />
|
||||
<LogoGrande
|
||||
containerClass="flex-1 min-w-[25vw]"
|
||||
class="w-100"
|
||||
/>
|
||||
</div>
|
||||
<div class="flex flex-col bg-celeste px-[20%] py-[20%]">
|
||||
<IconosLanding class="w-3xl min-w-[20vw] md:max-w-[50%]" />
|
||||
|
@ -244,6 +248,7 @@ export async function render(data) {
|
|||
</section>
|
||||
</body>
|
||||
</html>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue