import { Locale } from '@/lib/i18n'; import Navigation from './Navigation'; import Footer from './Footer'; interface LayoutProps { children: React.ReactNode; locale: Locale; navigation: Array<{ name: string; href: string }>; common: { companyName: string; footer: { quickLinks: string; contactInfo: string; followUs: string; copyright: string; email: string; phone: string; }; }; } export default function Layout({ children, locale, navigation, common }: LayoutProps) { return (