feat: remove waitlist count due to bots

This commit is contained in:
Maze Winther
2025-07-15 23:26:04 +02:00
parent 3a8d57921e
commit 83d65bdd15
2 changed files with 2 additions and 24 deletions
+1 -7
View File
@@ -1,18 +1,12 @@
import { Hero } from "@/components/landing/hero";
import { Header } from "@/components/header";
import { Footer } from "@/components/footer";
import { getWaitlistCount } from "@/lib/waitlist";
// Force dynamic rendering so waitlist count updates in real-time
export const dynamic = "force-dynamic";
export default async function Home() {
const signupCount = await getWaitlistCount();
return (
<div>
<Header />
<Hero signupCount={signupCount} />
<Hero />
<Footer />
</div>
);