{/* Sidebar */}
{/* Main content */}
{children}
import type { ReactNode } from "react"; import Link from "next/link"; import Logo from "./Logo"; interface LegalLayoutProps { title: string; children: ReactNode; } export default function LegalLayout({ title, children }: LegalLayoutProps) { return (