Files
OpenCut/apps/web/src/app/page.tsx
2025-06-22 18:05:44 +02:00

18 lines
457 B
TypeScript

import { Hero } from "@/components/landing/hero";
import { Header } from "@/components/header";
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} />
</div>
);
}