Skip to content

Commit

Permalink
add 404 page
Browse files Browse the repository at this point in the history
  • Loading branch information
FigmentBoy committed Nov 9, 2023
1 parent 9071ed3 commit d933c6f
Showing 1 changed file with 89 additions and 0 deletions.
89 changes: 89 additions & 0 deletions src/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Geode - The ultimate Geometry Dash modding framework</title>
<meta name="description" content="The main page for Geode SDK - a mod loader and modding framework for Geometry Dash.">

<meta property="og:url" content="https://geode-sdk.org/">
<meta property="og:type" content="website">
<meta property="og:title" content="Geode - The ultimate Geometry Dash modding framework">
<meta property="og:description" content="The main page for Geode SDK - a mod loader and modding framework for Geometry Dash.">
<meta property="og:image" content="https://docs.geode-sdk.org/icon.png">
<meta property="og:image:width" content="80">
<meta property="og:image:height" content="80">

<meta name="twitter:card" content="summary">
<meta property="twitter:url" content="https://geode-sdk.org/">
<meta name="twitter:title" content="Geode - The ultimate Geometry Dash modding framework">
<meta name="twitter:description" content="The main page for Geode SDK - a mod loader and modding framework for Geometry Dash.">
<meta property="twitter:image:src" content="https://docs.geode-sdk.org/icon.png">

<link href="/favicon.ico" rel="icon" type="image/x-icon">

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Varela+Round&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">

<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="body-3d bg-purple font-text text-white flex flex-col items-center p-0 m-0">
<!--
<div class="bg">
<img class="img" src="cover.png">
<div class="gradient"></div>
</div> -->

<div class="svg-bg"></div>

<div class="fixed w-full top-4 left-4">
<a
class="
button
flex items-center justify-center
bg-gray-darker
"
href=".."
>
<i data-feather="home"></i>
</a>
</div>

<header class="sm:p-20 max-sm:p-6 mt-20 flex flex-col items-center">
<section class="p-0 rounded-3xl flex flex-col items-center mb-4 max-w-fit">
<div class="flex flex-row items-center justify-start">
<h1 class="sm:text-7xl max-sm:text-5xl">404</h1>
</div>
<p class="font-head text-2xl text-yellow font-bold mb-4 text-center">
Page not found
</p>
</section>
</header>

<main class="p-10 m-0 absolute bottom-0">
<section class="flex flex-col mt-10 mb-0 items-center gap-10">
<div>
Site by Geode Team.
Icons from <a href="https://feathericons.com/" class="underline">Feather</a> and <a href="https://github.com/simple-icons/simple-icons" class="underline">Simple Icons</a>.
Thank you to <a href="https://github.com/nekitdev" class="underline">nekit</a> for the domain!
</div>
<a
class="button wide border-solid border-2 border-gray-light"
href="https://github.com/geode-sdk/geode-sdk.github.io"
>
<i data-feather="github"></i>
View Site Source
</a>
</section>
</main>


<script defer>
feather.replace();
</script>
</body>
</html>

0 comments on commit d933c6f

Please sign in to comment.