add empty page component for about and contact. Updated nav bar links to route to them

This commit is contained in:
Brandon Egger
2023-04-10 21:36:58 -05:00
parent 03f9e3de95
commit df7122d5fc
3 changed files with 26 additions and 2 deletions

View File

@ -0,0 +1,12 @@
import { type NextPage } from "next/types";
const About: NextPage = () => {
return (
<div>
</div>
);
};
export default About

View File

@ -0,0 +1,12 @@
import { type NextPage } from "next/types";
const Contact: NextPage = () => {
return (
<div>
</div>
);
};
export default Contact