import { MarketingLayout } from '@/components/layouts/marketing-layout' import { HeroSection } from '@/components/marketing/hero-section' import { ServiceCard } from '@/components/marketing/service-card' import { PricingCard } from '@/components/marketing/pricing-card' import { TestimonialCard } from '@/components/marketing/testimonial-card' import { FAQItem } from '@/components/marketing/faq-item' import { mockTestimonials, getAllFAQs, getPricingPlansByServiceType } from '@/lib/mock-data' import { Button } from '@/components/ui/button' import Link from 'next/link' import { Globe, Bot, Rocket, ArrowRight } from 'lucide-react' const services = [ { icon: Globe, title: 'Web Design', description: 'Modern, responsive websites built with the latest technologies. From landing pages to e-commerce platforms.', }, { icon: Bot, title: 'AI Automation', description: 'Intelligent chatbots and automation workflows that save time and enhance customer experience.', }, { icon: Rocket, title: 'Growth Solutions', description: 'Complete digital transformation packages combining web, AI, and marketing strategies.', }, ] export default function Home() { const webDesignPlans = getPricingPlansByServiceType('web-design') const testimonials = mockTestimonials.slice(0, 4) const faqs = getAllFAQs() return ( {/* Services Section */}

Our Services

Everything you need to scale your business in the digital age.

{services.map((service, index) => ( ))}
{/* Pricing Preview Section */}

Simple, Transparent Pricing

Choose the perfect plan for your needs. All plans include our core features.

{webDesignPlans.map((plan) => ( ))}
{/* Testimonials Section */}

Trusted by Growing Businesses

See what our clients have to say about working with us.

{testimonials.map((testimonial) => ( ))}
{/* FAQ Section */}

Frequently Asked Questions

Common questions about our services and process.

{faqs.map((faq) => ( ))}
{/* CTA Section */}

Ready to upgrade your business?

Join hundreds of other businesses saving time and making money with ScaleSite's affordable tech solutions.

) }