chore: add basic layout
This commit is contained in:
committed by
Mathias Schopmans
parent
f3979f2a2f
commit
57cdb91ec7
19
src/pages/help-and-about-tech-radar.tsx
Normal file
19
src/pages/help-and-about-tech-radar.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import Head from "next/head";
|
||||
|
||||
import { CustomPage } from "@/pages/_app";
|
||||
|
||||
const HelpAndAbout: CustomPage = () => {
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>Help and About</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
</Head>
|
||||
|
||||
<h1>Help and about</h1>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default HelpAndAbout;
|
||||
Reference in New Issue
Block a user