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 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ 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
+
+
+
+
+
+
+
+
+
diff --git a/src/routes/+page.css b/src/routes/+page.css
index 4bcd53a..cf7ce2c 100644
--- a/src/routes/+page.css
+++ b/src/routes/+page.css
@@ -1,20 +1,51 @@
/* Import Font Awesome for social media icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');
+@font-face {
+ font-family: 'sary_soft_semiboldregular';
+ src: url('/font/sary-soft.soft-semibold-webfont.woff2') format('woff2'),
+ url('/font/sary-soft.soft-semibold-webfont.woff') format('woff');
+ font-weight: normal;
+ font-style: normal;
+
+}
+
+html {
+ font-family: 'sary_soft_semiboldregular';
+ margin: 0px;
+ background-color: #202324;
+}
+
body {
margin: 0;
padding: 0;
- font-family: 'Roboto', sans-serif;
- background-color: #333;
+ font-family: 'sary_soft_semiboldregular';
color: rgb(0, 255, 0)
}
+.parallax-background {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background-image: url('/ricky.png');
+ background-repeat: no-repeat;
+ background-size: 90%;
+ background-position: center center;
+ transform: translateX(calc(-1 * (var(--mouse-x)) / 50)) translateY(calc(-1 * var(--mouse-y) / 50));
+ z-index: -1; /* Place the background behind other content */
+}
+
/* Set container styles */
.container {
display: flex;
flex-direction: column;
align-items: center;
height: 100%;
+ min-height: 100vh;
+ position: relative;
+ overflow: hidden;
}
.image-wrapper {
@@ -70,7 +101,7 @@ body {
color: rgb(0, 255, 0);
text-decoration: underline;
transition: all 0.2s ease-in-out;
- font-family: 'Fira Code', monospace;
+ font-family: 'sary_soft_semiboldregular';
font-style: italic;
}
@@ -85,6 +116,7 @@ body {
.social-media {
margin-top: 1rem;
color: white;
+ margin-bottom: 30px;
}
.row {
@@ -106,21 +138,6 @@ body {
transform: scale(1.3); /* make icon 20% bigger on hover */
}
-.footer {
- height: 1rem;
- background-color: #000;
- color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- position: fixed;
- bottom: 0px;
- left: 0px;
- right: 0px;
- padding-top: 0.25rem;
- padding-bottom: 0.125rem;
-}
-
.line {
padding: 10px;
}
@@ -136,16 +153,3 @@ body {
transform: scale(100);
color: gray;
}
-
-
-.alpha-test {
- background-color: orange;
- border-radius: 0px 0px 0px 25px;
- padding-right: 15px;
- color: #fff;
- width: 500px;
- position: fixed;
- top: 0;
- right: 0;
- text-align: right;
-}
\ No newline at end of file
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
index 677cbfe..50c6c24 100644
--- a/src/routes/+page.svelte
+++ b/src/routes/+page.svelte
@@ -1,23 +1,18 @@
+
+
+Jonas_Jones
-
-
-
Alpha Site
-
Click here to get to the alpha website and check out the latest progress towards the upcoming release
-
-
+
@@ -27,7 +22,7 @@
-
-
+
+
+
\ No newline at end of file
diff --git a/src/routes/based/+page.css b/src/routes/based/+page.css
new file mode 100644
index 0000000..cb15b2a
--- /dev/null
+++ b/src/routes/based/+page.css
@@ -0,0 +1,29 @@
+html {
+ background-color: #141414;
+ color: #fff;
+ font-family: 'Fira Code', monospace;
+}
+
+.terminal_user__name__text {
+ color: #FF9D00;
+}
+
+.terminal_user__host__text {
+ color: #05CE91;
+}
+
+.terminal_user {
+ display: flex;
+}
+
+#terminal-input {
+ color: #fff;
+ background-color: #1D2A35;
+ border: none;
+ outline: none;
+ font-size: 1rem;
+ font-family: 'Fira Code', monospace;
+ width: 100%;
+ /* debug */
+ border: 1px solid red;
+}
\ No newline at end of file
diff --git a/src/routes/based/+page.svelte b/src/routes/based/+page.svelte
index fcaee83..b0de62a 100644
--- a/src/routes/based/+page.svelte
+++ b/src/routes/based/+page.svelte
@@ -1 +1,28 @@
-Coming Soon™
\ No newline at end of file
+
+
+
+ For the Based
+
+
+ based
+ @
+ jonasjones.dev
+ :
+ /home/jonasjones
+ $
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/static/equalizer.gif b/static/equalizer.gif
new file mode 100644
index 0000000..dcd180f
Binary files /dev/null and b/static/equalizer.gif differ
diff --git a/static/favicon.png b/static/favicon.png
index 17c8e18..c730aad 100644
Binary files a/static/favicon.png and b/static/favicon.png differ
diff --git a/static/favicon.webp b/static/favicon.webp
new file mode 100644
index 0000000..9f06ed1
Binary files /dev/null and b/static/favicon.webp differ
diff --git a/static/font/sary-soft.soft-regular-webfont.css b/static/font/sary-soft.soft-regular-webfont.css
new file mode 100755
index 0000000..4e0e0a5
--- /dev/null
+++ b/static/font/sary-soft.soft-regular-webfont.css
@@ -0,0 +1,12 @@
+/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on November 9, 2022 */
+
+
+
+@font-face {
+ font-family: 'sary_softregular';
+ src: url('sary-soft.soft-regular-webfont.woff2') format('woff2'),
+ url('sary-soft.soft-regular-webfont.woff') format('woff');
+ font-weight: normal;
+ font-style: normal;
+
+}
\ No newline at end of file
diff --git a/static/font/sary-soft.soft-regular-webfont.woff b/static/font/sary-soft.soft-regular-webfont.woff
new file mode 100755
index 0000000..49d7e6e
Binary files /dev/null and b/static/font/sary-soft.soft-regular-webfont.woff differ
diff --git a/static/font/sary-soft.soft-regular-webfont.woff2 b/static/font/sary-soft.soft-regular-webfont.woff2
new file mode 100755
index 0000000..a0704e6
Binary files /dev/null and b/static/font/sary-soft.soft-regular-webfont.woff2 differ
diff --git a/static/font/sary-soft.soft-semibold-webfont.css b/static/font/sary-soft.soft-semibold-webfont.css
new file mode 100755
index 0000000..1555ee2
--- /dev/null
+++ b/static/font/sary-soft.soft-semibold-webfont.css
@@ -0,0 +1,12 @@
+/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on November 9, 2022 */
+
+
+
+@font-face {
+ font-family: 'sary_soft_semiboldregular';
+ src: url('sary-soft.soft-semibold-webfont.woff2') format('woff2'),
+ url('sary-soft.soft-semibold-webfont.woff') format('woff');
+ font-weight: normal;
+ font-style: normal;
+
+}
\ No newline at end of file
diff --git a/static/font/sary-soft.soft-semibold-webfont.woff b/static/font/sary-soft.soft-semibold-webfont.woff
new file mode 100755
index 0000000..1fd0247
Binary files /dev/null and b/static/font/sary-soft.soft-semibold-webfont.woff differ
diff --git a/static/font/sary-soft.soft-semibold-webfont.woff2 b/static/font/sary-soft.soft-semibold-webfont.woff2
new file mode 100755
index 0000000..0bf548e
Binary files /dev/null and b/static/font/sary-soft.soft-semibold-webfont.woff2 differ
diff --git a/static/icon_800x800.png b/static/icon_800x800.png
index 0d388e9..d925538 100644
Binary files a/static/icon_800x800.png and b/static/icon_800x800.png differ
diff --git a/static/icon_800x800.webp b/static/icon_800x800.webp
new file mode 100644
index 0000000..2fdc88a
Binary files /dev/null and b/static/icon_800x800.webp differ
diff --git a/static/icon_800x800_transparent.png b/static/icon_800x800_transparent.png
index 59b8736..1db3a53 100644
Binary files a/static/icon_800x800_transparent.png and b/static/icon_800x800_transparent.png differ
diff --git a/static/icon_800x800_transparent.webp b/static/icon_800x800_transparent.webp
new file mode 100644
index 0000000..5dee5f6
Binary files /dev/null and b/static/icon_800x800_transparent.webp differ
diff --git a/static/icon_80x80.png b/static/icon_80x80.png
index 17c8e18..bed1c39 100644
Binary files a/static/icon_80x80.png and b/static/icon_80x80.png differ
diff --git a/static/icon_80x80.webp b/static/icon_80x80.webp
new file mode 100644
index 0000000..34b8384
Binary files /dev/null and b/static/icon_80x80.webp differ
diff --git a/static/logo_colored.png b/static/logo_colored.png
old mode 100755
new mode 100644
index a0298a2..8c21a48
Binary files a/static/logo_colored.png and b/static/logo_colored.png differ
diff --git a/static/logo_colored.webp b/static/logo_colored.webp
new file mode 100644
index 0000000..29232df
Binary files /dev/null and b/static/logo_colored.webp differ
diff --git a/static/pause-icon-256.png b/static/pause-icon-256.png
new file mode 100644
index 0000000..8db779e
Binary files /dev/null and b/static/pause-icon-256.png differ
diff --git a/static/pause-icon-256.webp b/static/pause-icon-256.webp
new file mode 100644
index 0000000..8171494
Binary files /dev/null and b/static/pause-icon-256.webp differ
diff --git a/static/ricky.png b/static/ricky.png
new file mode 100644
index 0000000..2371558
Binary files /dev/null and b/static/ricky.png differ
diff --git a/static/ricky.webp b/static/ricky.webp
new file mode 100644
index 0000000..b064955
Binary files /dev/null and b/static/ricky.webp differ
diff --git a/static/root_logo.png b/static/root_logo.png
old mode 100755
new mode 100644
index c83a24b..0ad73c1
Binary files a/static/root_logo.png and b/static/root_logo.png differ
diff --git a/static/root_logo.webp b/static/root_logo.webp
new file mode 100644
index 0000000..e69e1ea
Binary files /dev/null and b/static/root_logo.webp differ
diff --git a/static/taeyong-blackwhite.png b/static/taeyong-blackwhite.png
new file mode 100644
index 0000000..097cc30
Binary files /dev/null and b/static/taeyong-blackwhite.png differ
diff --git a/static/taeyong-blackwhite.webp b/static/taeyong-blackwhite.webp
new file mode 100644
index 0000000..3c87509
Binary files /dev/null and b/static/taeyong-blackwhite.webp differ
diff --git a/static/taeyong.png b/static/taeyong.png
new file mode 100644
index 0000000..a678793
Binary files /dev/null and b/static/taeyong.png differ
diff --git a/static/taeyong.webp b/static/taeyong.webp
new file mode 100644
index 0000000..c4edbaf
Binary files /dev/null and b/static/taeyong.webp differ