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