website poc
This commit is contained in:
20
apps/website/app/page.tsx
Normal file
20
apps/website/app/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user