20 lines
580 B
TypeScript
20 lines
580 B
TypeScript
import { ModeGuard } from '@/components/shared/ModeGuard';
|
|
import Hero from '@/components/landing/Hero';
|
|
import FeatureGrid from '@/components/landing/FeatureGrid';
|
|
import EmailCapture from '@/components/landing/EmailCapture';
|
|
import FAQ from '@/components/landing/FAQ';
|
|
import Footer from '@/components/landing/Footer';
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<ModeGuard mode="pre-launch">
|
|
<main className="min-h-screen">
|
|
<Hero />
|
|
<FeatureGrid />
|
|
<EmailCapture />
|
|
<FAQ />
|
|
<Footer />
|
|
</main>
|
|
</ModeGuard>
|
|
);
|
|
} |