added frontend + securing beta server invites

This commit is contained in:
2026-01-02 22:50:02 +05:30
parent cb12b8ef75
commit 9b17a99456
52 changed files with 5409 additions and 5 deletions

18
web/app/page.tsx Normal file
View File

@@ -0,0 +1,18 @@
import Background from "@/components/Background";
import Hero from "@/components/Hero";
import Features from "@/components/Features";
import Footer from "@/components/Footer";
import { auth } from "@/auth";
import { LoginButton } from "@/components/LoginButton";
export default async function Home() {
const session = await auth();
return (
<main className="relative min-h-screen text-white">
<Background />
<Hero authButton={<LoginButton session={session} />} />
<Features />
<Footer />
</main>
);
}