Update website structure and styles

This commit is contained in:
Hazem Krimi
2022-02-13 19:11:46 +01:00
parent b6d7feccc1
commit 04cc13815d
20 changed files with 93 additions and 149 deletions
+5 -5
View File
@@ -47,11 +47,6 @@ const MobileNav: FC<Props> = ({ open, close }) => {
{mode === 'dark' ? 'Light Mode' : 'Dark Mode'}
</Button>
</div>
<div className='mobile-button-wrapper'>
<Button href='/about' onClick={() => close()}>
About
</Button>
</div>
<div className='mobile-button-wrapper'>
<Button href='/portfolio' onClick={() => close()}>
Portfolio
@@ -62,6 +57,11 @@ const MobileNav: FC<Props> = ({ open, close }) => {
Blog
</Button>
</div>
<div className='mobile-button-wrapper'>
<Button href='/contact' onClick={() => close()}>
Contact
</Button>
</div>
</Bar>
);
};