This commit is contained in:
z0x 2024-11-20 21:48:35 -05:00
parent 8ba9c973c0
commit bed427351f

View file

@ -1,5 +1,5 @@
--- ---
import "./src/css/snowflake.css"; import "./src/css/app.css";
--- ---
<html lang="en-us"> <html lang="en-us">
@ -12,13 +12,14 @@ import "./src/css/snowflake.css";
<link rel="icon" type="image/png" sizes="192x192" href="/src/img/logo_bg.svg" /> <link rel="icon" type="image/png" sizes="192x192" href="/src/img/logo_bg.svg" />
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="/src/img/logo_bg.svg" /> <link rel="apple-touch-icon" type="image/png" sizes="180x180" href="/src/img/logo_bg.svg" />
</head> </head>
<body class="bg-cover bg-[url('/src/img/gradient.webp')] text-white overflow-hidden"> <body class="bg-gradient-to-b from-neutral-700 via-neutral-900 to-neutral-950 text-white overflow-hidden">
<div class="flex items-center justify-center min-h-screen"> <div class="flex items-center justify-center min-h-screen">
<div class="bg-[rgba(11,11,11,0.6)] aspect-square rounded-3xl border-2 border-white flex flex-col items-center justify-center w-full h-full max-w-[40vmin] max-h-[40vmin] md:max-w-[20vmin] md:max-h-[20vmin]"> <div class="flex flex-col items-center justify-center w-full h-full max-w-[40vmin] max-h-[40vmin] md:max-w-[20vmin] md:max-h-[20vmin]">
<h1 class="text-6xl">404</h1> <h1 class="text-6xl">404</h1>
</div> </div>
</div> </div>
<div id="snowflake-container"></div> <div id="snowflake-container"></div>
<script src="/src/js/snowflakes.js"></script> <script src="/src/js/snowflakes.ts"></script>
<script src="/src/js/index.ts"></script>
</body> </body>
</html> </html>