diff --git a/public/404.html b/public/404.html new file mode 100644 index 0000000..652db6e --- /dev/null +++ b/public/404.html @@ -0,0 +1,25 @@ + + + + + + + 404 Page missing + + + + + + + + + +

Uh oh!

+

Looks like the page you're looking for is missing. Get the joke? Haha, I'm so funny.

+

Anyway, here's a link back to the homepage.

+ + + + + + \ No newline at end of file diff --git a/public/404/404/index.html b/public/404/404/index.html new file mode 100644 index 0000000..2bbc7ae --- /dev/null +++ b/public/404/404/index.html @@ -0,0 +1,43 @@ + + + Zola + + +
+

Welcome to Zola!

+

+ You're seeing this page because we couldn't find a template to render. +

+

+ To modify this page, create a page.html file in the templates directory or + install a theme. +
+ You can find what variables are available in this template in the documentation. +

+
+ + + + diff --git a/public/FiraCode-VF.ttf b/public/FiraCode-VF.ttf new file mode 100644 index 0000000..c05ac82 Binary files /dev/null and b/public/FiraCode-VF.ttf differ diff --git a/public/SFPro-Bold.otf b/public/SFPro-Bold.otf new file mode 100644 index 0000000..025b25c Binary files /dev/null and b/public/SFPro-Bold.otf differ diff --git a/public/SFPro-Italic-Bold.otf b/public/SFPro-Italic-Bold.otf new file mode 100644 index 0000000..7b65b53 Binary files /dev/null and b/public/SFPro-Italic-Bold.otf differ diff --git a/public/SFPro-Italic.otf b/public/SFPro-Italic.otf new file mode 100644 index 0000000..74b5e8b Binary files /dev/null and b/public/SFPro-Italic.otf differ diff --git a/public/SFPro-Regular.otf b/public/SFPro-Regular.otf new file mode 100644 index 0000000..09aaca9 Binary files /dev/null and b/public/SFPro-Regular.otf differ diff --git a/public/css/index.css b/public/css/index.css new file mode 100644 index 0000000..e5867ff --- /dev/null +++ b/public/css/index.css @@ -0,0 +1,112 @@ +*, +*::before, +*::after { + box-sizing: border-box; +} + +* { + margin: 0; + padding: 0; + font: inherit; +} + +@font-face { + font-family: "Fira Code"; + src: local("Fira Code"), url("/FiraCode-VF.ttf"); +} + +@font-face { + font-family: "SF Pro"; + src: url("/SFPro-Regular.otf"); +} + +@font-face { + font-family: "SF Pro"; + src: url("/SFPro-Bold.otf"); + font-weight: bold; +} + +@font-face { + font-family: "SF Pro"; + src: url("/SFPro-Italic.otf"); + font-style: italic; +} + +@font-face { + font-family: "SF Pro"; + src: url("/SFPro-Italic-Bold.otf"); + font-weight: bold; + font-style: italic; +} + +strong { + font-weight: bold; +} + +em { + font-style: italic; +} + +body { + min-height: 100vh; + background-color: #555; + padding: min(7vh, 30px) 15vw; + font-family: "SF Pro"; + color: white; +} + +h1 { + font-size: max(30px, 2vh); +} + +code { + font-family: "Fira Code", monospace; + color: inherit; + background-color: #444; + padding: 0.1em 0.2em; + border-radius: 0.3em; +} + +li { + margin: 0.5em 0; +} + +ul, +ol { + margin: 1em 0; + padding-left: 2.5em; +} + +a { + color: orange; +} + +a:visited, +a:visited * { + color: chocolate; +} + +.navbar { + display: flex; + flex-direction: row; + justify-content: center; + gap: 0.5em; +} + +p { + margin: 1em 0; +} + +hr { + margin: 0.5em 0; +} + +h1 { + margin: 0.67em 0; +} + +.pfp { + height: 1em; + bottom: -0.15em; + position: relative; +} \ No newline at end of file diff --git a/public/dn42/index.html b/public/dn42/index.html new file mode 100644 index 0000000..3138698 --- /dev/null +++ b/public/dn42/index.html @@ -0,0 +1,37 @@ + + + + + + + dn42 + + + + + + + + +

DN42

+

Dn42, short for decentralized network 42, is something that is better explained +by the wiki. As it turns out, I have a dn42 node! How I got +to this point with my limited networking knowledge is beyond me. My AS is +4242422047, and my IP ranges are 172.22.159.160/27 and fdfd:bad:c0de::/48. +I am open for peerings, so if you want to, just contact me through one of the ways +listed on the home page.

+
+ + + + + + + + \ No newline at end of file diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..c5982d4 Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..0e1fe5d --- /dev/null +++ b/public/index.html @@ -0,0 +1,56 @@ + + + + + + + Missing's website + + + + + + + + +

Welcome to missing's website!

+

Hey! I'm TheMissingPiece, but most people just call me missing. I am a nerd and +tech enthusiast who loves to rewrite things that already exist just because I can. +I know JavaScript, TypeScript, Java, C#, and Rust, but nowadays most of my code is +written in Rust. You can find my projects on my friend's Gitea.

+
+

Some projects I am currently working on:

+ +
+

My friends' links:

+ +
+

Ways to reach me:

+ +
+ + + + + + + + \ No newline at end of file diff --git a/public/missing.png b/public/missing.png new file mode 100644 index 0000000..1f3891a Binary files /dev/null and b/public/missing.png differ diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..4b3f059 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,4 @@ +User-agent: * +Disallow: +Allow: / +Sitemap: https://missingpiece.dev/sitemap.xml diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..e391fe8 --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,12 @@ + + + + https://missingpiece.dev/ + + + https://missingpiece.dev/404/404/ + + + https://missingpiece.dev/dn42/ + +