'use client' import { useState, useMemo } from 'react' import { MarketingLayout } from '@/components/layouts/marketing-layout' import { ServiceTypeToggle } from '@/components/services/service-type-toggle' import { ProgressStepper } from '@/components/services/progress-stepper' import { PricingCard } from '@/components/marketing/pricing-card' import { TrustBadges } from '@/components/services/trust-badges' import { getPricingPlansByServiceType, type ServiceType } from '@/lib/mock-data' import { Button } from '@/components/ui/button' import Link from 'next/link' export default function ServicesPage() { const [serviceType, setServiceType] = useState('web-design') const pricingPlans = useMemo( () => getPricingPlansByServiceType(serviceType), [serviceType] ) return (
{/* Progress Stepper */} {/* Service Type Toggle */} {/* Header */}

{serviceType === 'web-design' ? 'Web Design Packages' : 'AI Automation Packages'}

{serviceType === 'web-design' ? 'Professional websites built to convert visitors into customers. Choose the package that fits your needs.' : 'Intelligent automation solutions that save time and boost efficiency. Start automating today.'}

{/* Pricing Cards */}
{pricingPlans.map((plan) => ( ))}
{/* Trust Badges */} {/* Back Button */}
) }