import Link from 'next/link' import Head from 'next/head' export default function Layout({ children, title = 'Home' }) { return ( <> Portal.JS - {title}
{children}
) }