49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
'use client';
|
|
|
|
import React from 'react';
|
|
import { Hero } from '@/components/marketing/Hero';
|
|
import AIComingSoonBanner from '@/components/marketing/AIComingSoonBanner';
|
|
import { StatsStrip } from '@/components/marketing/StatsStrip';
|
|
import { TemplateCards } from '@/components/marketing/TemplateCards';
|
|
import { InstantGenerator } from '@/components/marketing/InstantGenerator';
|
|
import { StaticVsDynamic } from '@/components/marketing/StaticVsDynamic';
|
|
import { Features } from '@/components/marketing/Features';
|
|
import { Pricing } from '@/components/marketing/Pricing';
|
|
import { FAQ } from '@/components/marketing/FAQ';
|
|
import { Button } from '@/components/ui/Button';
|
|
import { ScrollToTop } from '@/components/ui/ScrollToTop';
|
|
import en from '@/i18n/en.json';
|
|
|
|
export default function HomePageClient() {
|
|
// Always use English for marketing pages
|
|
const t = en;
|
|
|
|
const industries = [
|
|
'Restaurant Chain',
|
|
'Tech Startup',
|
|
'Real Estate',
|
|
'Event Agency',
|
|
'Retail Store',
|
|
'Healthcare',
|
|
];
|
|
|
|
return (
|
|
<>
|
|
<Hero t={t} />
|
|
<AIComingSoonBanner />
|
|
<InstantGenerator t={t} />
|
|
<StaticVsDynamic t={t} />
|
|
<Features t={t} />
|
|
|
|
{/* Pricing Section */}
|
|
<Pricing t={t} />
|
|
|
|
{/* FAQ Section */}
|
|
<FAQ t={t} />
|
|
|
|
{/* Scroll to Top Button */}
|
|
<ScrollToTop />
|
|
</>
|
|
);
|
|
}
|