import Alert from "./alert"; import Footer from "./footer"; import Meta from "./meta"; type Props = { preview?: boolean; children: React.ReactNode; }; export default function Layout({ preview, children }: Props) { return ( <>
{children}