'use client'; import Navigation from '../../../components/Navigation'; import Footer from '../../../components/Footer'; import { useLanguage } from '../../../hooks/useLanguage'; interface ServicesPageProps { params: { lang: string; }; } export default function ServicesPage({ params }: ServicesPageProps) { const { currentLang, setCurrentLang, currentContent, createLocalizedPath } = useLanguage( params.lang, ); return (
{/* Hero Section */}

{currentContent.services.title}

{currentContent.services.subtitle}

{/* Services Grid */}
{currentContent.services.items.map((service, index) => (

{service.title}

{service.description}

    {service.features.map((feature, featureIndex) => (
  • {feature}
  • ))}
))}
{/* CTA Section */}

{currentContent.hero.cta}

{currentContent.hero.description}

); }