import Head from 'next/head' import type { ReactElement } from 'react' import LayoutReadyOrNot from '../components/layout' import styles from '/styles/ReadyOrNot.module.css' import { NextPageWithLayout } from './_app'; import React from 'react'; const ReadyOrNot: NextPageWithLayout = () => { return ( <> Ready or Not

About

Ready or Not Floor Plan Application in the works

) } ReadyOrNot.getLayout = function getLayout(page: ReactElement) { return ( {page} ) } export default ReadyOrNot;