add empty page component for about and contact. Updated nav bar links to route to them
This commit is contained in:
@ -0,0 +1,12 @@
|
||||
import { type NextPage } from "next/types";
|
||||
|
||||
const About: NextPage = () => {
|
||||
|
||||
return (
|
||||
<div>
|
||||
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default About
|
@ -0,0 +1,12 @@
|
||||
import { type NextPage } from "next/types";
|
||||
|
||||
const Contact: NextPage = () => {
|
||||
|
||||
return (
|
||||
<div>
|
||||
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Contact
|
Reference in New Issue
Block a user