From bcb0d8bdca2c72738706fb8b00458cdd1cf419d1 Mon Sep 17 00:00:00 2001 From: Jonas_Jones <91549607+J-onasJones@users.noreply.github.com> Date: Sun, 9 Jul 2023 18:17:06 +0200 Subject: [PATCH] merged changes from J-onasJones/alpha.jonasjones.me --- README.md | 4 +- package.json | 2 +- src/app.html | 1 + src/components/Footer.svelte | 22 ++ src/components/NavBar.svelte | 212 ++++++++++++++++++ src/components/ParallaxBg.svelte | 47 ++++ src/routes/+error.svelte | 34 +++ src/routes/+page.css | 66 +++--- src/routes/+page.svelte | 30 ++- src/routes/based/+page.css | 29 +++ src/routes/based/+page.svelte | 29 ++- static/equalizer.gif | Bin 0 -> 41247 bytes static/favicon.png | Bin 295 -> 229 bytes static/favicon.webp | Bin 0 -> 288 bytes .../font/sary-soft.soft-regular-webfont.css | 12 + .../font/sary-soft.soft-regular-webfont.woff | Bin 0 -> 27948 bytes .../font/sary-soft.soft-regular-webfont.woff2 | Bin 0 -> 20728 bytes .../font/sary-soft.soft-semibold-webfont.css | 12 + .../font/sary-soft.soft-semibold-webfont.woff | Bin 0 -> 28332 bytes .../sary-soft.soft-semibold-webfont.woff2 | Bin 0 -> 21192 bytes static/icon_800x800.png | Bin 4348 -> 299 bytes static/icon_800x800.webp | Bin 0 -> 1324 bytes static/icon_800x800_transparent.png | Bin 3265 -> 312 bytes static/icon_800x800_transparent.webp | Bin 0 -> 1418 bytes static/icon_80x80.png | Bin 295 -> 102 bytes static/icon_80x80.webp | Bin 0 -> 148 bytes static/logo_colored.png | Bin 20198 -> 6710 bytes static/logo_colored.webp | Bin 0 -> 2298 bytes static/pause-icon-256.png | Bin 0 -> 259 bytes static/pause-icon-256.webp | Bin 0 -> 464 bytes static/ricky.png | Bin 0 -> 46377 bytes static/ricky.webp | Bin 0 -> 15258 bytes static/root_logo.png | Bin 108859 -> 33614 bytes static/root_logo.webp | Bin 0 -> 33360 bytes static/taeyong-blackwhite.png | Bin 0 -> 2040 bytes static/taeyong-blackwhite.webp | Bin 0 -> 562 bytes static/taeyong.png | Bin 0 -> 8350 bytes static/taeyong.webp | Bin 0 -> 2610 bytes 38 files changed, 448 insertions(+), 52 deletions(-) create mode 100644 src/components/Footer.svelte create mode 100644 src/components/NavBar.svelte create mode 100644 src/components/ParallaxBg.svelte create mode 100644 src/routes/+error.svelte create mode 100644 src/routes/based/+page.css create mode 100644 static/equalizer.gif create mode 100644 static/favicon.webp create mode 100755 static/font/sary-soft.soft-regular-webfont.css create mode 100755 static/font/sary-soft.soft-regular-webfont.woff create mode 100755 static/font/sary-soft.soft-regular-webfont.woff2 create mode 100755 static/font/sary-soft.soft-semibold-webfont.css create mode 100755 static/font/sary-soft.soft-semibold-webfont.woff create mode 100755 static/font/sary-soft.soft-semibold-webfont.woff2 create mode 100644 static/icon_800x800.webp create mode 100644 static/icon_800x800_transparent.webp create mode 100644 static/icon_80x80.webp mode change 100755 => 100644 static/logo_colored.png create mode 100644 static/logo_colored.webp create mode 100644 static/pause-icon-256.png create mode 100644 static/pause-icon-256.webp create mode 100644 static/ricky.png create mode 100644 static/ricky.webp mode change 100755 => 100644 static/root_logo.png create mode 100644 static/root_logo.webp create mode 100644 static/taeyong-blackwhite.png create mode 100644 static/taeyong-blackwhite.webp create mode 100644 static/taeyong.png create mode 100644 static/taeyong.webp diff --git a/README.md b/README.md index 8c11a8a..bd79e8f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ -# jonasjones.me - My website at https://jonasjones.me +# alpha.jonasjones.dev + alpha repo diff --git a/package.json b/package.json index 209c0b3..b73295a 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "0.0.1", "private": true, "scripts": { - "dev": "vite dev", + "dev": "vite dev --host", "build": "vite build", "preview": "vite preview", "check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json", diff --git a/src/app.html b/src/app.html index effe0d0..7def3ad 100644 --- a/src/app.html +++ b/src/app.html @@ -1,5 +1,6 @@ + diff --git a/src/components/Footer.svelte b/src/components/Footer.svelte new file mode 100644 index 0000000..8d0f496 --- /dev/null +++ b/src/components/Footer.svelte @@ -0,0 +1,22 @@ + + \ No newline at end of file diff --git a/src/components/NavBar.svelte b/src/components/NavBar.svelte new file mode 100644 index 0000000..63a0dab --- /dev/null +++ b/src/components/NavBar.svelte @@ -0,0 +1,212 @@ + + + + + + + + \ No newline at end of file diff --git a/src/components/ParallaxBg.svelte b/src/components/ParallaxBg.svelte new file mode 100644 index 0000000..be77325 --- /dev/null +++ b/src/components/ParallaxBg.svelte @@ -0,0 +1,47 @@ + + + + +
+
+ Parallax Background + +
+ + +
+ \ No newline at end of file diff --git a/src/routes/+error.svelte b/src/routes/+error.svelte new file mode 100644 index 0000000..5fffe99 --- /dev/null +++ b/src/routes/+error.svelte @@ -0,0 +1,34 @@ + + + + 404 - Page not found +
+

ERROR 404

+

Page not found

+
+ Teal Slime +
+
+ +