mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 02:53:51 +00:00
18 lines
438 B
Plaintext
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>
|