'use client'; import { useEffect } from 'react'; import Navbar from './Navbar'; import Footer from './Footer'; import TDK from './TDK'; interface PageLayoutProps { title: string; description: string; keywords: string; currentLang: string; currentContent: any; handleLanguageChange: (lang: string) => void; children: React.ReactNode; } export default function PageLayout({ title, description, keywords, currentLang, currentContent, handleLanguageChange, children, }: PageLayoutProps) { return (
{children}
); }