Files
TechRadarAJR/src/pages/help-and-about-tech-radar.tsx
2024-03-11 10:40:14 +01:00

19 lines
337 B
TypeScript

import Head from "next/head";
import { formatTitle } from "@/lib/format";
import { CustomPage } from "@/pages/_app";
const HelpAndAbout: CustomPage = () => {
return (
<>
<Head>
<title>{formatTitle("Help and About")}</title>
</Head>
<h1>Help and about</h1>
</>
);
};
export default HelpAndAbout;