From 6d55a75aa4a52e1d160a3f022244393805122dd3 Mon Sep 17 00:00:00 2001 From: BOTAlex Date: Tue, 14 Jan 2025 02:08:26 +0100 Subject: [PATCH] fuck guys, I've might have cooked again :( --- src/routes/+page.svelte | 37 +++++++++++++++++++----------- src/routes/comps/NameAndTag.svelte | 13 +++++++++++ src/routes/comps/Tags.svelte | 32 ++++++++++++++++++++++++++ static/stylesheets/global.css | 4 ++++ 4 files changed, 73 insertions(+), 13 deletions(-) create mode 100644 src/routes/comps/NameAndTag.svelte create mode 100644 src/routes/comps/Tags.svelte diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 1d10c5a..e6b6383 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -28,6 +28,8 @@ import Time3 from "$lib/GamePreviews/time-3.png" import Time4 from "$lib/GamePreviews/time-4.png" import Time5 from "$lib/GamePreviews/time-5.gif" + import Tags from './comps/Tags.svelte'; + import NameAndTag from './comps/NameAndTag.svelte'; const mobileThreshold : string = '600px'; // was 1000px. zhen testing let mobile : boolean; @@ -65,7 +67,7 @@
-

Alex / Zhen

+

Hi, I am Alex/Zhen, {@html !mobile ? "" : "
"} I'm that chinese guy.

Here's my CV: pdf

@@ -74,34 +76,43 @@
-

Sveske / Benjamin

+

Hi, I use Arch, btw.

-

Here's my Linked-in: Linked-in

+

Linked-in

-
-
-

Snorre

- -

I'm the diversity hire. (Gay)

-

Here's my Linked-in: Linked-in

-
-
-
+
+
 
 
 
+
+ + +

I'm the diversity hire. (Gay)

+

Linked-in

+
+
-

Zylvester

+ + +

Snorre does not get paid.

+

Linked-in

+
+
+ + +
+

Hi, I am [insert text here]

Here's a joke about recursion: recursion

diff --git a/src/routes/comps/NameAndTag.svelte b/src/routes/comps/NameAndTag.svelte new file mode 100644 index 0000000..1eea9f2 --- /dev/null +++ b/src/routes/comps/NameAndTag.svelte @@ -0,0 +1,13 @@ + + +
+

{name}

+
+ +
\ No newline at end of file diff --git a/src/routes/comps/Tags.svelte b/src/routes/comps/Tags.svelte new file mode 100644 index 0000000..5c110d7 --- /dev/null +++ b/src/routes/comps/Tags.svelte @@ -0,0 +1,32 @@ + + +
+ {#each Tags as tag} +
{tag}
+ {/each} +
+ + \ No newline at end of file diff --git a/static/stylesheets/global.css b/static/stylesheets/global.css index 968c5c6..5cd3a51 100644 --- a/static/stylesheets/global.css +++ b/static/stylesheets/global.css @@ -13,6 +13,10 @@ url("/fonts/NotoSans-VariableFont_wdth,wght.ttf") format("truetype"); } +.cozette { + font-family: "CozetteVector"; +} + html { background: var(--background1); }