mirror of
https://github.com/Xevion/xevion.dev.git
synced 2025-12-16 10:13:58 -06:00
Add current page logic to navbar, increase text size
This commit is contained in:
@@ -3,8 +3,8 @@ import AppWrapper from "../components/AppWrapper";
|
||||
import WorkInProgress from "../components/WorkInProgress";
|
||||
|
||||
const ContactPage: NextPage = () => {
|
||||
return <AppWrapper>
|
||||
<WorkInProgress />
|
||||
return <AppWrapper current='contact'>
|
||||
<WorkInProgress/>
|
||||
</AppWrapper>
|
||||
}
|
||||
|
||||
|
||||
@@ -59,7 +59,7 @@ const PhototagPage: NextPage = () => {
|
||||
<li>Cutting Edge - the latest technology</li>
|
||||
</ul>
|
||||
<h3>Screenshots</h3>
|
||||
<div className="relative space-y-3">
|
||||
<div className="relative space-y-8">
|
||||
{images.map(([src, description]) => {
|
||||
return <div key={src} className="flex flex-col justify-center w-full">
|
||||
<Image fill sizes="100vw" src={src} alt=""
|
||||
|
||||
@@ -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>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user