21 lines
535 B
TypeScript
21 lines
535 B
TypeScript
import { Hero } from "@/components/landing/hero";
|
|
import { Header } from "@/components/header";
|
|
import { Footer } from "@/components/footer";
|
|
import { getWaitlistCount } from "@/lib/waitlist";
|
|
import Image from "next/image";
|
|
|
|
// 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>
|
|
);
|
|
}
|