import { PageFrame, type PageFrameMaxWidth, type PageFrameProps, } from "./page-frame"; export type PageLayoutMaxWidth = PageFrameMaxWidth; export type PageLayoutProps = PageFrameProps; /** A clean structural frame for routed content with no generated page heading. */ export function PageLayout(props: PageLayoutProps) { return ; }