import Link from 'next/link' export default function Layout({ children, bar, foo }) { return (

Nested Layout

{children}
{foo}
{bar}
) }