Add current page logic to navbar, increase text size

This commit is contained in:
Xevion
2022-12-30 20:50:01 -06:00
parent 55fc7168b1
commit 7426450ce9
4 changed files with 15 additions and 14 deletions

View File

@@ -3,7 +3,7 @@ import AppWrapper from "../components/AppWrapper";
import WorkInProgress from "../components/WorkInProgress";
const ProjectsPage: NextPage = () => {
return <AppWrapper>
return <AppWrapper current='projects'>
<WorkInProgress/>
</AppWrapper>;
}