import React from 'react' import Head from 'next/head' import Footer from './components/Footer' import styles from './Layout.module.css' import { title } from '../site.config' export default function Layout({ children, pageTitle = title }: { children: any pageTitle?: string }) { return (
{pageTitle} {children}
) }