'use client'; import React from 'react'; import { Hero } from '@/components/marketing/Hero'; 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 { useTranslation } from '@/hooks/useTranslation'; export default function HomePage() { const { t } = useTranslation(); const industries = [ 'Restaurant Chain', 'Tech Startup', 'Real Estate', 'Event Agency', 'Retail Store', 'Healthcare', ]; return ( <> {/* Industry Buttons */} {industries.map((industry) => ( {industry} ))} {/* Pricing Teaser */} Ready to get started? Choose the perfect plan for your needs View Pricing Plans {/* FAQ Teaser */} Have questions? Check out our frequently asked questions View FAQ > ); }
Choose the perfect plan for your needs
Check out our frequently asked questions