diff --git a/apps/web/src/app/page.tsx b/apps/web/src/app/page.tsx
index 57967b7..614aae3 100644
--- a/apps/web/src/app/page.tsx
+++ b/apps/web/src/app/page.tsx
@@ -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 (
-
+
);
}
diff --git a/apps/web/src/components/landing/hero.tsx b/apps/web/src/components/landing/hero.tsx
index e5eca8b..f970179 100644
--- a/apps/web/src/components/landing/hero.tsx
+++ b/apps/web/src/components/landing/hero.tsx
@@ -6,18 +6,25 @@ import { Input } from "../ui/input";
import { ArrowRight } from "lucide-react";
import Link from "next/link";
import { useState } from "react";
-import { toast } from "sonner";
+import { useToast } from "@/hooks/use-toast";
-export function Hero() {
+interface HeroProps {
+ signupCount: number;
+}
+
+export function Hero({ signupCount }: HeroProps) {
const [email, setEmail] = useState("");
const [isSubmitting, setIsSubmitting] = useState(false);
+ const { toast } = useToast();
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
if (!email.trim()) {
- toast.error("Email required", {
+ toast({
+ title: "Email required",
description: "Please enter your email address.",
+ variant: "destructive",
});
return;
}
@@ -36,16 +43,23 @@ export function Hero() {
const data = await response.json();
if (response.ok) {
- toast.success("Welcome to the waitlist! 🎉");
+ toast({
+ title: "Welcome to the waitlist! 🎉",
+ description: "You'll be notified when we launch.",
+ });
setEmail("");
} else {
- toast.error("Oops!", {
+ toast({
+ title: "Oops!",
description: data.error || "Something went wrong. Please try again.",
+ variant: "destructive",
});
}
} catch (error) {
- toast.error("Network error", {
+ toast({
+ title: "Network error",
description: "Please check your connection and try again.",
+ variant: "destructive",
});
} finally {
setIsSubmitting(false);
@@ -113,6 +127,18 @@ export function Hero() {
+
+ {signupCount > 0 && (
+
+
+ {signupCount.toLocaleString()} people already joined
+
+ )}
`count(*)` })
+ .from(waitlist);
+ return result[0]?.count || 0;
+ } catch (error) {
+ console.error("Failed to fetch waitlist count:", error);
+ return 0;
+ }
+}