'use client'; import { useLocale } from 'next-intl'; import { useRouter } from 'next/navigation'; export function LocaleSwitcher() { const locale = useLocale(); const router = useRouter(); function switchLocale() { const next = locale === 'de' ? 'en' : 'de'; document.cookie = `NEXT_LOCALE=${next}; path=/; max-age=31536000; SameSite=Lax`; router.refresh(); } return ( ); }