Add contact/projects page shells

This commit is contained in:
Xevion
2022-12-30 16:13:21 -06:00
parent b253e06e59
commit 5944b84b6f
3 changed files with 19 additions and 1 deletions

9
src/pages/contact.tsx Normal file
View File

@@ -0,0 +1,9 @@
import {NextPage} from "next";
import AppWrapper from "../components/AppWrapper";
const ContactPage: NextPage = () => {
return <AppWrapper>
</AppWrapper>
}
export default ContactPage;

9
src/pages/projects.tsx Normal file
View File

@@ -0,0 +1,9 @@
import {NextPage} from "next";
import AppWrapper from "../components/AppWrapper";
const ProjectsPage: NextPage = () => {
return <AppWrapper>
</AppWrapper>
}
export default ProjectsPage;