'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 (
{currentContent.services.subtitle}
{service.description}
{currentContent.hero.description}