InvestWeb/pages/about.tsx

24 lines
557 B
TypeScript
Raw Normal View History

2022-12-08 21:40:02 -05:00
import Head from "next/head";
import { ReactElement } from "react";
import HomeLayout from "../layouts/HomeLayout";
import { homeMain } from "../layouts/NavTemplates";
function About() {
return (
2022-12-10 05:54:00 -05:00
<>
<Head>
<title>About - InvestBot</title>
</Head>
<div className="flex min-h-screen flex-col items-center justify-center py-2">
<p>about</p>
</div>
</>
2022-12-08 21:40:02 -05:00
);
}
About.getLayout = function getLayout(page: ReactElement) {
return <HomeLayout navOptions={homeMain}>{page}</HomeLayout>;
};
export default About;