Add WIP component for contact/projects pages

This commit is contained in:
Xevion
2022-12-30 18:17:54 -06:00
parent 770ae6faaa
commit b82baaf4bb
3 changed files with 25 additions and 3 deletions

View File

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