import { FooterView } from "@/components/layout/Footer"; import { Navigation } from "@/components/layout/Navigation"; export function HomeLayout(props: { showBg: boolean; children: React.ReactNode; }) { return ( {props.children} ); }