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

This is the Blue page, it's borders are blue

Go to the{' '} Red Page

Go to the{' '} Green Page

) } BluePage.Layout = BlueLayout export default BluePage