import * as React from "react"; import Head from "next/head"; type LayoutProps = { title: string; children?: React.ReactNode; }; const Layout = ({ children, title }: LayoutProps) => { return ( <> {title ? title : "πŸš€βœ¨βš”οΈπŸ‘ŠπŸ»πŸ“šπŸ‘¨πŸ»β€πŸ”¬πŸ˜±πŸ§Ÿβ€β™€οΈπŸͺ±πŸ•ΈπŸ€ πŸ¦€"}
{children}
); }; export default Layout;