From d6449e23240ca282680a2784c19c916ba65fb894 Mon Sep 17 00:00:00 2001 From: Alina Carpio Date: Tue, 6 Aug 2024 10:02:35 -0500 Subject: [PATCH] Add hero part --- src/routes/+page.svelte | 9 +++++++-- src/routes/hero.svelte | 32 ++++++++++++++++++++++++++++++++ tailwind.config.ts | 4 ++++ 3 files changed, 43 insertions(+), 2 deletions(-) create mode 100644 src/routes/hero.svelte diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index fabbf29..b24c00f 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,2 +1,7 @@ -

Bienvenido a KOKOA

-

Promovemos la programación orientada al comunismo

+ + + + + \ No newline at end of file diff --git a/src/routes/hero.svelte b/src/routes/hero.svelte new file mode 100644 index 0000000..3b30229 --- /dev/null +++ b/src/routes/hero.svelte @@ -0,0 +1,32 @@ +
+
+ Imagen de amigos programando +
+
+
+ +
+
+ Kokoa + - Vive el software libre +
+
+

Club estudiantil politécnico promotor del + uso, modificación, distribución y aprendizaje de software libre

+
+ +
+
+
+ + + diff --git a/tailwind.config.ts b/tailwind.config.ts index 75447ab..31cbe36 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -10,6 +10,10 @@ export default { fontFamily: { fira: ["Fira Code", "mono-space"], }, + colors: { + primary: "#8CC63F", + base: "#E0EBFF", + }, }, }, plugins: [forms({ strategy: "class" }), typography],