import React from 'react' import Link from 'next/link' import GreenLayout from '../layouts/GreenLayout' const GreenPage = () => { return (

This is the Green page, it's borders are green

Go back to the{' '} Blue Page

) } GreenPage.Layout = GreenLayout export default GreenPage