From e6a23a3248b6fd010f01ed17264b3c18d2fed822 Mon Sep 17 00:00:00 2001 From: daniel_sp Date: Sun, 17 Mar 2024 00:04:10 +0000 Subject: [PATCH] feat: add prizes --- src/components/prizes.astro | 57 +++++++++++++++++++++++++++++++++++++ src/pages/index.astro | 2 ++ src/styles/global.css | 2 ++ 3 files changed, 61 insertions(+) create mode 100644 src/components/prizes.astro diff --git a/src/components/prizes.astro b/src/components/prizes.astro new file mode 100644 index 00000000..117b785d --- /dev/null +++ b/src/components/prizes.astro @@ -0,0 +1,57 @@ +
+
+

+ Prizes +

+

+ The top 3 teams will receive cash prizes. The prize pool will be distributed as follows: +

+
+
+
+
+ 1st PLACE +
+
+ 800€ +
+
+
+
+ 2nd PLACE +
+
+ 600€ +
+
+
+
+ 3rd PLACE +
+
+ 400€ +
+
+
+ +
diff --git a/src/pages/index.astro b/src/pages/index.astro index c8d75380..b9c99dd7 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -2,9 +2,11 @@ import Intro from "~/components/intro.astro"; import Gallery from "~/components/gallery.astro"; import IndexLayout from "~/layouts/indexLayout.astro"; +import Prizes from "~/components/prizes.astro"; --- + diff --git a/src/styles/global.css b/src/styles/global.css index c8210837..8fddbae8 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -29,7 +29,9 @@ h1 { h2 { font-family: "Resegrg", serif; } + dt, +dd, p { font-family: "VT323", monospace; }