streamline nav

This commit is contained in:
Chuck Dries 2022-07-11 22:24:21 -07:00
parent 2c9aacc1a2
commit b499066da8
No known key found for this signature in database
GPG Key ID: A00B7AEAE1DC5BE6
2 changed files with 9 additions and 25 deletions

View File

@ -55,30 +55,6 @@ const Nav = ({ isClient, internalLinks, className }) => (
Instagram
</a>
</li>
<li>
<a
className={getNavClasses(isClient)}
href="https://github.com/chuckdries"
>
Github
</a>
</li>
<li>
<a
className={getNavClasses(isClient)}
href="https://www.linkedin.com/in/chuckdries/"
>
LinkedIn
</a>
</li>
<li>
<a
className={getNavClasses(isClient)}
href="https://medium.com/@chuckdries"
>
Medium
</a>
</li>
<li>
<a
className={getNavClasses(isClient)}
@ -87,6 +63,14 @@ const Nav = ({ isClient, internalLinks, className }) => (
YouTube
</a>
</li>
<li>
<a
className={getNavClasses(isClient)}
href="https://github.com/chuckdries"
>
Github
</a>
</li>
<li>
<a
className={getNavClasses(isClient)}

View File

@ -137,7 +137,7 @@ const IndexPage = ({
<Nav
internalLinks={[
{ href: "/", label: "Home" },
{ href: "/photogallery/", label: "Gallery" },
{ href: "/photogallery/", label: "Photography Gallery" },
]}
isClient={isClient}
/>