import type { NextPage } from "next"; import Head from "next/head"; import Navigation from "./Navigation"; import styles from "../../styles/Blog/Blog.module.scss"; interface ILayoutProps { title?: string; } const Layout: NextPage = ({ title, children }) => { return <> {title ?? "c0ntroller.de"}
{ children }
; }; export default Layout;