feat: add waitlist signup count

This commit is contained in:
Maze Winther
2025-06-22 14:25:19 +02:00
parent 6e84dcaffb
commit e84caf3f9f
3 changed files with 52 additions and 8 deletions

View File

@ -1,11 +1,14 @@
import { Hero } from "@/components/landing/hero";
import { Header } from "@/components/header";
import { getWaitlistCount } from "@/lib/waitlist";
export default async function Home() {
const signupCount = await getWaitlistCount();
export default function Home() {
return (
<div>
<Header />
<Hero />
<Hero signupCount={signupCount} />
</div>
);
}