export const metadata = { title: "Admin Panel | TenderHub Kenya", description: "Superuser administration panel", }; export default function AdminLayout({ children, }: { children: React.ReactNode; }) { return ( <> {children} ); }