import React from 'react'; import Head from 'next/head'; import Header from 'components/Header'; import Footer from 'components/Footer'; export default function Layout({ title, children }) { return ( <> umami{title && ` - ${title}`}
{children}