import { Navigation } from "@/components/navigation"; import { ModeToggle } from "@/components/mode-toggle"; interface NavigationLayoutProps { children: React.ReactNode; } export function NavigationLayout({ children }: NavigationLayoutProps) { return (

GenDB

{/* Search component could go here */}
{children}
); }