From 418de925c429e941d9cc8adc85cb3dcb8e2aca10 Mon Sep 17 00:00:00 2001 From: Jonathan Branan Date: Tue, 28 Jan 2025 14:32:15 -0600 Subject: [PATCH] added resume to navlinks --- app/tag-data.json | 2 +- components/Header.tsx | 2 +- data/headerNavLinks.ts | 14 +++++++------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/app/tag-data.json b/app/tag-data.json index efaa5ce..846dbd8 100644 --- a/app/tag-data.json +++ b/app/tag-data.json @@ -1 +1 @@ -{"art":1,"store":1,"melis-sweetsimple":1,"visual-studio-code":1,"guide":4,"tailwind-nextjs-starter-blog":1,"disney":1,"github":1,"python":1,"projects":1,"code":1,"cygnus":1,"self-hosted":1,"server":1,"next-js":1} \ No newline at end of file +{"art":1,"store":1,"melis-sweetsimple":1,"visual-studio-code":1,"guide":4,"tailwind-nextjs-starter-blog":1,"disney":1,"github":1,"python":1,"projects":1,"code":1,"docker":1,"unraid":1,"cygnus":1,"self-hosted":1,"server":1,"next-js":1} \ No newline at end of file diff --git a/components/Header.tsx b/components/Header.tsx index e4f27fc..387276e 100644 --- a/components/Header.tsx +++ b/components/Header.tsx @@ -29,7 +29,7 @@ const Header = () => {
-
+
{headerNavLinks .filter((link) => link.href !== '/') .map((link) => ( diff --git a/data/headerNavLinks.ts b/data/headerNavLinks.ts index bd00834..5e709cf 100644 --- a/data/headerNavLinks.ts +++ b/data/headerNavLinks.ts @@ -1,11 +1,11 @@ const headerNavLinks = [ - { href: '/', title: 'Home' }, - { href: '/blog', title: 'Blog' }, - { href: '/likes', title: 'Likes' }, - { href: '/tags', title: 'Tags' }, - { href: '/projects', title: 'Projects' }, - // { href: 'https://s3.jonb.io/cdn/author/Resume.pdf', title: 'Resume' }, - { href: '/about', title: 'About' }, + { href: '/', title: 'home' }, + { href: '/blog', title: 'blog' }, + { href: '/likes', title: 'likes' }, + { href: '/tags', title: 'tags' }, + { href: '/projects', title: 'projects' }, + { href: 'https://s3.jonb.io/cdn/author/Resume.pdf', title: 'resume' }, + { href: '/about', title: 'about' }, ] export default headerNavLinks