import type { ReactNode } from "react"; import { Navigation } from "./Navigation"; interface Props { children: ReactNode; } export function Layout({ children }: Props) { return (