summaryrefslogtreecommitdiff
path: root/src/pages/index.astro
diff options
context:
space:
mode:
authorJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-06-24 12:08:41 -0300
committerJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-06-24 12:50:43 -0300
commitf9a77c5c27aede4e5978eb55d9b7af781b680a1d (patch)
treed545e325ba1ae756fc2eac66fac1001b6753c40d /src/pages/index.astro
feat!: initial commit
Signed-off-by: João Augusto Costa Branco Marado Torres <torres.dev@disroot.org>
Diffstat (limited to 'src/pages/index.astro')
-rw-r--r--src/pages/index.astro28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro
new file mode 100644
index 0000000..e1e97ef
--- /dev/null
+++ b/src/pages/index.astro
@@ -0,0 +1,28 @@
+---
+import Base from "@layouts/Base.astro";
+import { SITE_TITLE } from "src/consts";
+---
+
+<Base title={SITE_TITLE}>
+ <main>
+ <article>
+ <h2>Viva abril!</h2>
+ <figure>
+ <blockquote lang="es-VE" translate="no">
+ &laquo;Los que le cierran el camino a la revoluci&oacute;n
+ pac&iacute;fica le abren al mismo tiempo el camino a la
+ revoluci&oacute;n violenta&raquo;.
+ </blockquote>
+ <figcaption>
+ &mdash; Hugo Ch&aacute;vez.
+ <p>
+ Tradu&ccedil;&atilde;o: &ldquo;Aqueles que fecham o caminho para a
+ revolu&ccedil;&atilde;o pac&iacute;fica abrem, ao mesmo tempo, o
+ caminho para a revolu&ccedil;&atilde;o violenta.&rdquo;
+ </p>
+ </figcaption>
+ </figure>
+ <p><em>Portugal <em>fez</em> diferente!</em></p>
+ </article>
+ </main>
+</Base>