mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
20 lines
504 B
TypeScript
20 lines
504 B
TypeScript
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} />
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|