Void; part 1

This commit is contained in:
2026-04-06 23:08:06 -07:00
parent 2c5784c6e2
commit 53065a11dc
4 changed files with 234 additions and 8 deletions

17
src/pages/enlighten.astro Normal file
View File

@@ -0,0 +1,17 @@
---
export const prerender = false;
import "@/style/globals.css"
import Void from "@/components/hero/void";
---
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="noindex" />
<title>...</title>
</head>
<body class="bg-black text-white overflow-hidden h-screen m-0">
<Void client:only="react" />
</body>
</html>