import Link from 'next/link' import Head from 'next/head' export default ({ children, title = 'This is the default title' }) => (
{title}
{children}
)