import Link from 'next/link'; import type { ReactNode } from 'react'; import { SiteShell } from '@/components/site/site-shell'; import { getLocale, t } from '@/lib/i18n'; export async function LegalShell({ title, children }: { title: string; children: ReactNode; }) { const locale = await getLocale(); return (

{title}

{children}
); }