Files
web/src/pages/enlighten.astro
2026-04-06 23:08:06 -07:00

18 lines
438 B
Plaintext

---
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>