Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
66a440426c |
9 changed files with 1007 additions and 1973 deletions
|
@ -1,29 +0,0 @@
|
||||||
/**
|
|
||||||
* @param {import("@11ty/eleventy").UserConfig} eleventyConfig
|
|
||||||
*/
|
|
||||||
module.exports = function (eleventyConfig) {
|
|
||||||
eleventyConfig.setServerOptions({
|
|
||||||
watch: ["src/**/*.css"],
|
|
||||||
});
|
|
||||||
eleventyConfig.addWatchTarget("src/");
|
|
||||||
eleventyConfig.addWatchTarget("tailwind.config.js");
|
|
||||||
|
|
||||||
eleventyConfig.addShortcode("tailwind", async () => {
|
|
||||||
const from = "src/tailwind.css";
|
|
||||||
return await postcss.process(await readFile(from, "utf-8"), { from });
|
|
||||||
});
|
|
||||||
eleventyConfig.addPassthroughCopy("src/**.png");
|
|
||||||
eleventyConfig.addPassthroughCopy("src/**/*.webp");
|
|
||||||
eleventyConfig.addPassthroughCopy("src/**/*.woff");
|
|
||||||
eleventyConfig.addPassthroughCopy("src/**/*.woff2");
|
|
||||||
|
|
||||||
eleventyConfig.addExtension(["11ty.jsx", "11ty.ts", "11ty.tsx"], {
|
|
||||||
key: "11ty.js",
|
|
||||||
});
|
|
||||||
|
|
||||||
return {
|
|
||||||
dir: {
|
|
||||||
input: "src",
|
|
||||||
},
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,20 +1,18 @@
|
||||||
{
|
{
|
||||||
"name": "sitio",
|
"name": "sitio",
|
||||||
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"serve": "NODE_OPTIONS='--require esbuild-register' eleventy --serve --quiet",
|
"serve": "NODE_OPTIONS='--require esbuild-register' eleventy --serve --quiet",
|
||||||
"build": "ELEVENTY_ENV=production NODE_OPTIONS='--require esbuild-register' eleventy"
|
"build": "ELEVENTY_ENV=production NODE_OPTIONS='--require esbuild-register' eleventy"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@11ty/eleventy": "^2.0.1",
|
|
||||||
"@types/node": "^20.3.3",
|
"@types/node": "^20.3.3",
|
||||||
"cssnano": "^6.0.1",
|
"cssnano": "^6.0.1",
|
||||||
"esbuild-register": "^3.4.2",
|
|
||||||
"postcss": "^8.4.24",
|
"postcss": "^8.4.24",
|
||||||
"postcss-import": "^15.1.0",
|
"postcss-import": "^15.1.0",
|
||||||
"postcss-url": "^10.1.3",
|
"postcss-url": "^10.1.3",
|
||||||
"prettier-plugin-tailwindcss": "^0.3.0",
|
"prettier-plugin-tailwindcss": "^0.3.0",
|
||||||
"tailwindcss": "^3.3.2",
|
"tailwindcss": "^3.3.2"
|
||||||
"vhtml": "^2.2.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
2321
pnpm-lock.yaml
2321
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
3
prettier.config.cjs
Normal file
3
prettier.config.cjs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
module.exports = {
|
||||||
|
plugins: [require("prettier-plugin-tailwindcss")],
|
||||||
|
};
|
|
@ -1,3 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
plugins: [require('prettier-plugin-tailwindcss')],
|
|
||||||
}
|
|
16
src/css.js
16
src/css.js
|
@ -1,13 +1,17 @@
|
||||||
import { readFile } from "node:fs/promises";
|
import { readFile } from "node:fs/promises";
|
||||||
|
|
||||||
const postcssImport = require("postcss-import");
|
import postcssS from "postcss";
|
||||||
const cssnano = require("cssnano");
|
import postcssImport from "postcss-import";
|
||||||
const tailwindPlugin = require("tailwindcss")(require("../tailwind.config"));
|
import postcssUrl from "postcss-url";
|
||||||
const postcss = require("postcss")([
|
import cssnano from "cssnano";
|
||||||
|
import tailwindcss from "tailwindcss";
|
||||||
|
import tailwindConfig from "../tailwind.config.js";
|
||||||
|
const tailwindPlugin = tailwindcss(tailwindConfig);
|
||||||
|
const postcss = postcssS([
|
||||||
postcssImport(),
|
postcssImport(),
|
||||||
require("postcss-url")({ url: "rebase" }),
|
postcssUrl({ url: "rebase" }),
|
||||||
tailwindPlugin,
|
tailwindPlugin,
|
||||||
...(process.env.ELEVENTY_ENV === "production" ? [cssnano()] : []),
|
...(process.env.PROD ? [cssnano()] : []),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
export async function tailwind() {
|
export async function tailwind() {
|
||||||
|
|
|
@ -1,276 +0,0 @@
|
||||||
import h from "vhtml";
|
|
||||||
import { readFile } from "node:fs/promises";
|
|
||||||
import { tailwind } from "./css.js";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param {import("node:fs").PathLike} path
|
|
||||||
*/
|
|
||||||
async function loadSvg(path) {
|
|
||||||
let f = await readFile(path, "utf-8");
|
|
||||||
return (props) => {
|
|
||||||
let s = f;
|
|
||||||
if (props.class) s = f.replace("<svg", `<svg class="${props.class}"`);
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
class={props.containerClass}
|
|
||||||
dangerouslySetInnerHTML={{ __html: s }}
|
|
||||||
></div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function render(data) {
|
|
||||||
const Estrellita = await loadSvg("src/assets/estrellita.svg");
|
|
||||||
const Wave = await loadSvg("src/assets/wave.svg");
|
|
||||||
const VinculosPuntos = await loadSvg("src/assets/vinculos puntos.svg");
|
|
||||||
const Circulo = await loadSvg("src/assets/circulo.svg");
|
|
||||||
const Cruces = await loadSvg("src/assets/cruces.svg");
|
|
||||||
// console.debug(data);
|
|
||||||
const WobbleVioleta = await loadSvg("src/assets/wobble violeta.svg");
|
|
||||||
const CaritasFelices = await loadSvg("src/assets/caritas felices.svg");
|
|
||||||
const LogoInline = await loadSvg("src/assets/logo inline.svg");
|
|
||||||
const LogoGrande = await loadSvg("src/assets/logo grande.svg");
|
|
||||||
const IconosLanding = await loadSvg("src/assets/iconos landing.svg");
|
|
||||||
const css = await tailwind();
|
|
||||||
|
|
||||||
const CuadradoAlfabetizaciones = await loadSvg(
|
|
||||||
"src/assets/cuadrados/alfabetizaciones.svg"
|
|
||||||
);
|
|
||||||
const CuadradoCaraDeLapiz = await loadSvg(
|
|
||||||
"src/assets/cuadrados/cara de lapiz.svg"
|
|
||||||
);
|
|
||||||
const CuadradoDatos = await loadSvg("src/assets/cuadrados/datos.svg");
|
|
||||||
const CuadradoEscuelas = await loadSvg("src/assets/cuadrados/escuelas.svg");
|
|
||||||
return (
|
|
||||||
"<!doctype html>" +
|
|
||||||
(
|
|
||||||
<html lang="es">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta
|
|
||||||
name="viewport"
|
|
||||||
content="width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover"
|
|
||||||
/>
|
|
||||||
{/* TODO: SEO */}
|
|
||||||
<title>Alfadatizar</title>
|
|
||||||
<meta
|
|
||||||
name="description"
|
|
||||||
content="Alfadatizar alfadatiza alfadatizando."
|
|
||||||
/>
|
|
||||||
<style dangerouslySetInnerHTML={{ __html: css }}></style>
|
|
||||||
</head>
|
|
||||||
<body class="flex flex-col font-sans">
|
|
||||||
<div class="flex min-h-screen w-full flex-col items-stretch">
|
|
||||||
<nav class="w-full bg-blanco px-16 py-4">
|
|
||||||
<LogoInline class="h-12" />
|
|
||||||
</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"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div class="flex flex-col justify-evenly bg-celeste px-[20%] py-[20%]">
|
|
||||||
<IconosLanding class="w-3xl min-w-[20vw] md:max-w-[50%]" />
|
|
||||||
<h2 class="my-[20%] text-[5vmax] leading-none md:my-[10%] md:text-[5vmin]">
|
|
||||||
Hackeamos
|
|
||||||
<br />
|
|
||||||
la educación
|
|
||||||
<br />
|
|
||||||
digital
|
|
||||||
<br />
|
|
||||||
<strong>equitativa</strong>
|
|
||||||
</h2>
|
|
||||||
<Wave class="mt-4 min-w-[12%] max-w-[40%] md:max-w-[20%]" />
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
</div>
|
|
||||||
<section class="bg-blanco">
|
|
||||||
<WobbleVioleta />
|
|
||||||
<div class="mx-auto w-full max-w-[12rem] pt-16">
|
|
||||||
<CaritasFelices />
|
|
||||||
</div>
|
|
||||||
<div class="p-[10%] py-16">
|
|
||||||
<h2 class="flex items-center justify-center gap-4 pb-8 text-5xl font-bold leading-none">
|
|
||||||
<Estrellita class="h-[1em] w-[1em] shrink-0" />{" "}
|
|
||||||
<span class="text-center">Nuevos saberes</span>{" "}
|
|
||||||
<Estrellita class="h-[1em] w-[1em] shrink-0" />
|
|
||||||
</h2>
|
|
||||||
<div class="grid grid-cols-1 gap-3 md:grid-cols-2 lg:grid-cols-4">
|
|
||||||
{data.frontpageNuevosSaberes.map(
|
|
||||||
({ número, título, content }) => (
|
|
||||||
<div class="flex-1 border-l border-current px-6 py-6">
|
|
||||||
<h3 class="pb-4 text-2xl italic">{número}</h3>
|
|
||||||
<h3 class="pb-4 text-2xl font-bold">{título}</h3>
|
|
||||||
<p>{content}</p>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
<div class="mt-16 flex items-center justify-between">
|
|
||||||
<Circulo class="h-6" />
|
|
||||||
<div class="relative">
|
|
||||||
<Cruces class="h-8" />
|
|
||||||
<Cruces class="absolute top-0 h-8 -scale-y-100" />
|
|
||||||
</div>
|
|
||||||
<Circulo class="h-6" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
<section class="bg-blanco">
|
|
||||||
<div class="mx-auto max-w-5xl p-2">
|
|
||||||
<div class="mb-4 flex justify-center gap-4">
|
|
||||||
<img
|
|
||||||
class="aspect-[1.3] w-1/2 object-contain"
|
|
||||||
src="assets/img/imagen_naranja.webp"
|
|
||||||
alt="un grupo de personas atendiendo una capacitación, sentadas alrededor de una mesa, con tablets en sus manos"
|
|
||||||
loading="lazy"
|
|
||||||
/>
|
|
||||||
<img
|
|
||||||
class="aspect-[1.3] w-1/2 object-contain"
|
|
||||||
src="assets/img/imagen_violeta.webp"
|
|
||||||
alt="un robot siendo manipulado por manos de niñxs, usando una laptop"
|
|
||||||
loading="lazy"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div class="flex items-center gap-4">
|
|
||||||
<Wave
|
|
||||||
containerClass="mx-8 shrink-[2] max-w-[10vw]"
|
|
||||||
class="w-full"
|
|
||||||
/>
|
|
||||||
<img
|
|
||||||
class="mx-auto aspect-[1.94] w-8/12 flex-auto object-contain"
|
|
||||||
src="assets/img/imagen_celeste.webp"
|
|
||||||
alt="dos mujeres riendose mirando una tablet"
|
|
||||||
loading="lazy"
|
|
||||||
/>
|
|
||||||
<Wave
|
|
||||||
containerClass="mx-8 shrink-[2] max-w-[10vw]"
|
|
||||||
class="w-full"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<VinculosPuntos class="m-16 mx-auto h-16" />
|
|
||||||
</section>
|
|
||||||
<section class="flex place-content-center bg-blanco">
|
|
||||||
<div class="grid grid-cols-1 place-content-center xl:grid-cols-2">
|
|
||||||
{Object.entries(data.frontpageCuadrados).map(
|
|
||||||
([color, { título, content }]) => {
|
|
||||||
// ¿por qué así en vez de `bg-${color}`? para que lo detecte tailwind.
|
|
||||||
const classes = {
|
|
||||||
celeste: "bg-celeste",
|
|
||||||
amarillo: "bg-amarillo lg:order-last xl:order-none",
|
|
||||||
naranja: "bg-naranja xl:order-last",
|
|
||||||
violeta: "bg-violeta lg:order-last",
|
|
||||||
};
|
|
||||||
const iconos = {
|
|
||||||
celeste: <CuadradoAlfabetizaciones class="w-32" />,
|
|
||||||
amarillo: <CuadradoCaraDeLapiz class="w-32" />,
|
|
||||||
naranja: <CuadradoDatos class="w-32" />,
|
|
||||||
violeta: <CuadradoEscuelas class="w-32" />,
|
|
||||||
};
|
|
||||||
return (
|
|
||||||
<div class="grid lg:grid-cols-2">
|
|
||||||
<div
|
|
||||||
class={`aspect-square h-auto w-full max-w-[24rem] ${classes[color]} flex items-center justify-center`}
|
|
||||||
>
|
|
||||||
{iconos[color]}
|
|
||||||
</div>
|
|
||||||
<div class="h-auto w-full max-w-[24rem] overflow-y-auto break-words p-8 lg:aspect-square">
|
|
||||||
<h2 class="mb-4 text-4xl font-bold">{título}</h2>
|
|
||||||
<p class="text-2xl leading-6">{content}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
<section class="flex min-h-screen items-center bg-[black] text-[white]">
|
|
||||||
<div class="m-[10%] grid w-full grid-rows-1 items-end lg:grid-cols-4">
|
|
||||||
<div class="col-span-3 flex h-full flex-col justify-end p-4">
|
|
||||||
<h2 class="mb-4 mt-16 text-3xl leading-none">
|
|
||||||
<strong>Caso:</strong>
|
|
||||||
<br />
|
|
||||||
Nuestra Señora del Rosario
|
|
||||||
</h2>
|
|
||||||
<iframe
|
|
||||||
class="aspect-video w-full"
|
|
||||||
src="https://www.youtube-nocookie.com/embed/NsT30qGayP4"
|
|
||||||
loading="lazy"
|
|
||||||
title="YouTube video player"
|
|
||||||
frameborder="0"
|
|
||||||
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
|
||||||
allowfullscreen
|
|
||||||
></iframe>
|
|
||||||
</div>
|
|
||||||
<div class="flex flex-col items-start gap-4 p-4">
|
|
||||||
<p class="text-xl leading-6">
|
|
||||||
Formamos a los docentes para enseñar clases híbridas,
|
|
||||||
alfabetizaciones aumentadas y pensamiento computacional
|
|
||||||
aplicado.
|
|
||||||
</p>
|
|
||||||
<a
|
|
||||||
class="border border-[white] bg-[black] p-3 text-xl font-bold uppercase leading-none"
|
|
||||||
target="_blank"
|
|
||||||
rel="noreferrer"
|
|
||||||
href="https://www.youtube.com/watch?v=NsT30qGayP4"
|
|
||||||
>
|
|
||||||
VER +
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
<section class="grid w-full grid-cols-2 justify-center gap-[1px] gap-y-6 bg-amarillo px-[10%] py-12 md:grid-cols-4">
|
|
||||||
{data.frontpageFooterButtons.map(
|
|
||||||
({ content, buttonText, buttonUrl }) => (
|
|
||||||
<div class="flex flex-col justify-end">
|
|
||||||
<h2 class="px-3 pb-4 text-xl">{content}</h2>
|
|
||||||
<a
|
|
||||||
href={buttonUrl}
|
|
||||||
class="px-4 py-3 font-bold outline outline-1 outline-[black]"
|
|
||||||
>
|
|
||||||
{buttonText}
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
)}
|
|
||||||
</section>
|
|
||||||
<section class="grid grid-cols-1 gap-8 bg-blanco px-[10%] py-8 md:grid-cols-10">
|
|
||||||
<div class="col-span-4 border-l border-gray-500 pl-4">
|
|
||||||
<h2 class="py-2 text-xl font-semibold">Socios</h2>
|
|
||||||
<div class="grid grid-cols-3 mr-16">{fillerUdesa(6)}</div>
|
|
||||||
</div>
|
|
||||||
<div class="col-span-3 border-l border-gray-500 pl-4">
|
|
||||||
<h2 class="py-2 text-xl font-semibold">Socios etec lab</h2>
|
|
||||||
<div class="grid grid-cols-2 mr-16">{fillerUdesa(4)}</div>
|
|
||||||
</div>
|
|
||||||
<div class="col-span-3 border-l border-gray-500 pl-4">
|
|
||||||
<h2 class="py-2 text-xl font-semibold">Donantes</h2>
|
|
||||||
<div class="grid grid-cols-2 mr-16">{fillerUdesa(4)}</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
<section class="flex flex-wrap items-end justify-between gap-8 bg-violeta px-[10%] py-24">
|
|
||||||
<LogoInline class="w-full max-w-[16rem]" />
|
|
||||||
<a class="text-xl" href="mailto:TODO@alfadatiz.ar">
|
|
||||||
TODO@alfadatiz.ar
|
|
||||||
</a>
|
|
||||||
</section>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function fillerUdesa(n) {
|
|
||||||
return Array(n)
|
|
||||||
.fill(0)
|
|
||||||
.map(() => (
|
|
||||||
<img
|
|
||||||
class="grayscale"
|
|
||||||
src="udesa.png"
|
|
||||||
alt="logo de la universidad de san andrés"
|
|
||||||
/>
|
|
||||||
));
|
|
||||||
}
|
|
246
src/index.s.jsx
Normal file
246
src/index.s.jsx
Normal file
|
@ -0,0 +1,246 @@
|
||||||
|
import { tailwind } from "./css.js";
|
||||||
|
|
||||||
|
import Estrellita from "./assets/estrellita.svg";
|
||||||
|
import Wave from "./assets/wave.svg";
|
||||||
|
import VinculosPuntos from "./assets/vinculos puntos.svg";
|
||||||
|
import Circulo from "./assets/circulo.svg";
|
||||||
|
import Cruces from "./assets/cruces.svg";
|
||||||
|
import WobbleVioleta from "./assets/wobble violeta.svg";
|
||||||
|
import CaritasFelices from "./assets/caritas felices.svg";
|
||||||
|
import LogoInline from "./assets/logo inline.svg";
|
||||||
|
import LogoGrande from "./assets/logo grande.svg";
|
||||||
|
import IconosLanding from "./assets/iconos landing.svg";
|
||||||
|
import CuadradoAlfabetizaciones from "./assets/cuadrados/alfabetizaciones.svg";
|
||||||
|
import CuadradoCaraDeLapiz from "./assets/cuadrados/cara de lapiz.svg";
|
||||||
|
import CuadradoDatos from "./assets/cuadrados/datos.svg";
|
||||||
|
import CuadradoEscuelas from "./assets/cuadrados/escuelas.svg";
|
||||||
|
|
||||||
|
import frontpageNuevosSaberes from "./_data/frontpageNuevosSaberes.json";
|
||||||
|
import frontpageCuadrados from "./_data/frontpageCuadrados.json";
|
||||||
|
import frontpageFooterButtons from "./_data/frontpageFooterButtons.json";
|
||||||
|
|
||||||
|
export async function render() {
|
||||||
|
const css = await tailwind();
|
||||||
|
return (
|
||||||
|
<html lang="es">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta
|
||||||
|
name="viewport"
|
||||||
|
content="width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover"
|
||||||
|
/>
|
||||||
|
{/* TODO: SEO */}
|
||||||
|
<title>Alfadatizar</title>
|
||||||
|
<meta
|
||||||
|
name="description"
|
||||||
|
content="Alfadatizar alfadatiza alfadatizando."
|
||||||
|
/>
|
||||||
|
<style dangerouslySetInnerHTML={{ __html: css }}></style>
|
||||||
|
</head>
|
||||||
|
<body class="flex flex-col font-sans">
|
||||||
|
<div class="flex min-h-screen w-full flex-col items-stretch">
|
||||||
|
<nav class="w-full bg-blanco px-16 py-4">
|
||||||
|
<LogoInline class="h-12" />
|
||||||
|
</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" />
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-col justify-evenly bg-celeste px-[20%] py-[20%]">
|
||||||
|
<IconosLanding class="w-3xl min-w-[20vw] md:max-w-[50%]" />
|
||||||
|
<h2 class="my-[20%] text-[5vmax] leading-none md:my-[10%] md:text-[5vmin]">
|
||||||
|
Hackeamos
|
||||||
|
<br />
|
||||||
|
la educación
|
||||||
|
<br />
|
||||||
|
digital
|
||||||
|
<br />
|
||||||
|
<strong>equitativa</strong>
|
||||||
|
</h2>
|
||||||
|
<Wave class="mt-4 min-w-[12%] max-w-[40%] md:max-w-[20%]" />
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<section class="bg-blanco">
|
||||||
|
<WobbleVioleta />
|
||||||
|
<div class="mx-auto w-full max-w-[12rem] pt-16">
|
||||||
|
<CaritasFelices />
|
||||||
|
</div>
|
||||||
|
<div class="p-[10%] py-16">
|
||||||
|
<h2 class="flex items-center justify-center gap-4 pb-8 text-5xl font-bold leading-none">
|
||||||
|
<Estrellita class="h-[1em] w-[1em] shrink-0" />{" "}
|
||||||
|
<span class="text-center">Nuevos saberes</span>{" "}
|
||||||
|
<Estrellita class="h-[1em] w-[1em] shrink-0" />
|
||||||
|
</h2>
|
||||||
|
<div class="grid grid-cols-1 gap-3 md:grid-cols-2 lg:grid-cols-4">
|
||||||
|
{frontpageNuevosSaberes.map(({ número, título, content }) => (
|
||||||
|
<div class="flex-1 border-l border-current px-6 py-6">
|
||||||
|
<h3 class="pb-4 text-2xl italic">{número}</h3>
|
||||||
|
<h3 class="pb-4 text-2xl font-bold">{título}</h3>
|
||||||
|
<p>{content}</p>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
<div class="mt-16 flex items-center justify-between">
|
||||||
|
<Circulo class="h-6" />
|
||||||
|
<div class="relative">
|
||||||
|
<Cruces class="h-8" />
|
||||||
|
<Cruces class="absolute top-0 h-8 -scale-y-100" />
|
||||||
|
</div>
|
||||||
|
<Circulo class="h-6" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="bg-blanco">
|
||||||
|
<div class="mx-auto max-w-5xl p-2">
|
||||||
|
<div class="mb-4 flex justify-center gap-4">
|
||||||
|
<img
|
||||||
|
class="aspect-[1.3] w-1/2 object-contain"
|
||||||
|
src="assets/img/imagen_naranja.webp"
|
||||||
|
alt="un grupo de personas atendiendo una capacitación, sentadas alrededor de una mesa, con tablets en sus manos"
|
||||||
|
loading="lazy"
|
||||||
|
/>
|
||||||
|
<img
|
||||||
|
class="aspect-[1.3] w-1/2 object-contain"
|
||||||
|
src="assets/img/imagen_violeta.webp"
|
||||||
|
alt="un robot siendo manipulado por manos de niñxs, usando una laptop"
|
||||||
|
loading="lazy"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-center gap-4">
|
||||||
|
<Wave
|
||||||
|
containerClass="mx-8 shrink-[2] max-w-[10vw]"
|
||||||
|
class="w-full"
|
||||||
|
/>
|
||||||
|
<img
|
||||||
|
class="mx-auto aspect-[1.94] w-8/12 flex-auto object-contain"
|
||||||
|
src="assets/img/imagen_celeste.webp"
|
||||||
|
alt="dos mujeres riendose mirando una tablet"
|
||||||
|
loading="lazy"
|
||||||
|
/>
|
||||||
|
<Wave
|
||||||
|
containerClass="mx-8 shrink-[2] max-w-[10vw]"
|
||||||
|
class="w-full"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<VinculosPuntos class="m-16 mx-auto h-16" />
|
||||||
|
</section>
|
||||||
|
<section class="flex place-content-center bg-blanco">
|
||||||
|
<div class="grid grid-cols-1 place-content-center xl:grid-cols-2">
|
||||||
|
{Object.entries(frontpageCuadrados).map(
|
||||||
|
([color, { título, content }]) => {
|
||||||
|
// ¿por qué así en vez de `bg-${color}`? para que lo detecte tailwind.
|
||||||
|
const classes = {
|
||||||
|
celeste: "bg-celeste",
|
||||||
|
amarillo: "bg-amarillo lg:order-last xl:order-none",
|
||||||
|
naranja: "bg-naranja xl:order-last",
|
||||||
|
violeta: "bg-violeta lg:order-last",
|
||||||
|
};
|
||||||
|
const iconos = {
|
||||||
|
celeste: <CuadradoAlfabetizaciones class="w-32" />,
|
||||||
|
amarillo: <CuadradoCaraDeLapiz class="w-32" />,
|
||||||
|
naranja: <CuadradoDatos class="w-32" />,
|
||||||
|
violeta: <CuadradoEscuelas class="w-32" />,
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
<div class="grid lg:grid-cols-2">
|
||||||
|
<div
|
||||||
|
class={`aspect-square h-auto w-full max-w-[24rem] ${classes[color]} flex items-center justify-center`}
|
||||||
|
>
|
||||||
|
{iconos[color]}
|
||||||
|
</div>
|
||||||
|
<div class="h-auto w-full max-w-[24rem] overflow-y-auto break-words p-8 lg:aspect-square">
|
||||||
|
<h2 class="mb-4 text-4xl font-bold">{título}</h2>
|
||||||
|
<p class="text-2xl leading-6">{content}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="flex min-h-screen items-center bg-[black] text-[white]">
|
||||||
|
<div class="m-[10%] grid w-full grid-rows-1 items-end lg:grid-cols-4">
|
||||||
|
<div class="col-span-3 flex h-full flex-col justify-end p-4">
|
||||||
|
<h2 class="mb-4 mt-16 text-3xl leading-none">
|
||||||
|
<strong>Caso:</strong>
|
||||||
|
<br />
|
||||||
|
Nuestra Señora del Rosario
|
||||||
|
</h2>
|
||||||
|
<iframe
|
||||||
|
class="aspect-video w-full"
|
||||||
|
src="https://www.youtube-nocookie.com/embed/NsT30qGayP4"
|
||||||
|
loading="lazy"
|
||||||
|
title="YouTube video player"
|
||||||
|
frameborder="0"
|
||||||
|
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
||||||
|
allowfullscreen
|
||||||
|
></iframe>
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-col items-start gap-4 p-4">
|
||||||
|
<p class="text-xl leading-6">
|
||||||
|
Formamos a los docentes para enseñar clases híbridas,
|
||||||
|
alfabetizaciones aumentadas y pensamiento computacional
|
||||||
|
aplicado.
|
||||||
|
</p>
|
||||||
|
<a
|
||||||
|
class="border border-[white] bg-[black] p-3 text-xl font-bold uppercase leading-none"
|
||||||
|
target="_blank"
|
||||||
|
rel="noreferrer"
|
||||||
|
href="https://www.youtube.com/watch?v=NsT30qGayP4"
|
||||||
|
>
|
||||||
|
VER +
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="grid w-full grid-cols-2 justify-center gap-[1px] gap-y-6 bg-amarillo px-[10%] py-12 md:grid-cols-4">
|
||||||
|
{frontpageFooterButtons.map(({ content, buttonText, buttonUrl }) => (
|
||||||
|
<div class="flex flex-col justify-end">
|
||||||
|
<h2 class="px-3 pb-4 text-xl">{content}</h2>
|
||||||
|
<a
|
||||||
|
href={buttonUrl}
|
||||||
|
class="px-4 py-3 font-bold outline outline-1 outline-[black]"
|
||||||
|
>
|
||||||
|
{buttonText}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</section>
|
||||||
|
<section class="grid grid-cols-1 gap-8 bg-blanco px-[10%] py-8 md:grid-cols-10">
|
||||||
|
<div class="col-span-4 border-l border-gray-500 pl-4">
|
||||||
|
<h2 class="py-2 text-xl font-semibold">Socios</h2>
|
||||||
|
<div class="mr-16 grid grid-cols-3">{fillerUdesa(6)}</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-span-3 border-l border-gray-500 pl-4">
|
||||||
|
<h2 class="py-2 text-xl font-semibold">Socios etec lab</h2>
|
||||||
|
<div class="mr-16 grid grid-cols-2">{fillerUdesa(4)}</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-span-3 border-l border-gray-500 pl-4">
|
||||||
|
<h2 class="py-2 text-xl font-semibold">Donantes</h2>
|
||||||
|
<div class="mr-16 grid grid-cols-2">{fillerUdesa(4)}</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="flex flex-wrap items-end justify-between gap-8 bg-violeta px-[10%] py-24">
|
||||||
|
<LogoInline class="w-full max-w-[16rem]" />
|
||||||
|
<a class="text-xl" href="mailto:TODO@alfadatiz.ar">
|
||||||
|
TODO@alfadatiz.ar
|
||||||
|
</a>
|
||||||
|
</section>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function fillerUdesa(n) {
|
||||||
|
return Array(n)
|
||||||
|
.fill(0)
|
||||||
|
.map(() => (
|
||||||
|
<img
|
||||||
|
class="grayscale"
|
||||||
|
src="udesa.png"
|
||||||
|
alt="logo de la universidad de san andrés"
|
||||||
|
/>
|
||||||
|
));
|
||||||
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
module.exports = {
|
export default {
|
||||||
content: ["./src/**/*.{html,liquid,11ty.jsx}"],
|
content: ["./src/**/*.{html,liquid,jsx}"],
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
colors: {
|
colors: {
|
||||||
|
|
Reference in a new issue