import Head from "next/head"; import { ReactElement } from "react"; import HomeLayout from "../layouts/HomeLayout"; import { homeMain } from "../layouts/NavTemplates"; function About() { return (

about

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