This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
readyornot/pages/index.tsx

34 lines
810 B
TypeScript
Raw Permalink Normal View History

2022-12-03 20:02:18 +00:00
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 (
<>
<Head>
<title>Ready or Not</title>
<meta charSet='utf-8' />
<link rel="icon" href="/favicon.ico" />
</Head>
<h1 className={styles.title}>
About
</h1>
<p className={styles.description}>
Ready or Not Floor Plan Application in the works
</p>
</>
)
}
ReadyOrNot.getLayout = function getLayout(page: ReactElement) {
return (
<LayoutReadyOrNot>
{page}
</LayoutReadyOrNot>
)
}
export default ReadyOrNot;