import { ComponentChildren } from "preact"; export type Props = { children: ComponentChildren; title?: string; name?: string; url: URL; description?: string; }; export const MainLayout = ({ children, url }: Props) => { const menu = [ { name: "🏡 Home", link: "/", }, { name: "🍽️ Recipes", link: "/recipes", }, { name: "🍿 Movies", link: "/movies", }, { name: "📝 Articles", link: "/articles", }, ]; return (