added resume to navlinks
Some checks failed
Build and Deploy docker container / build (push) Has been cancelled

This commit is contained in:
Jonathan Branan 2025-01-28 14:32:15 -06:00
parent 676b0c4ac1
commit 418de925c4
3 changed files with 9 additions and 9 deletions

View File

@ -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} {"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}

View File

@ -29,7 +29,7 @@ const Header = () => {
</div> </div>
</Link> </Link>
<div className="flex items-center space-x-4 leading-5 sm:space-x-6"> <div className="flex items-center space-x-4 leading-5 sm:space-x-6">
<div className="no-scrollbar hidden max-w-40 items-center space-x-4 overflow-x-auto sm:flex sm:space-x-6 md:max-w-72 lg:max-w-96"> <div className="no-scrollbar hidden max-w-40 items-center space-x-4 overflow-x-scroll sm:flex sm:space-x-3 md:max-w-72 lg:max-w-96">
{headerNavLinks {headerNavLinks
.filter((link) => link.href !== '/') .filter((link) => link.href !== '/')
.map((link) => ( .map((link) => (

View File

@ -1,11 +1,11 @@
const headerNavLinks = [ const headerNavLinks = [
{ href: '/', title: 'Home' }, { href: '/', title: 'home' },
{ href: '/blog', title: 'Blog' }, { href: '/blog', title: 'blog' },
{ href: '/likes', title: 'Likes' }, { href: '/likes', title: 'likes' },
{ href: '/tags', title: 'Tags' }, { href: '/tags', title: 'tags' },
{ href: '/projects', title: 'Projects' }, { href: '/projects', title: 'projects' },
// { href: 'https://s3.jonb.io/cdn/author/Resume.pdf', title: 'Resume' }, { href: 'https://s3.jonb.io/cdn/author/Resume.pdf', title: 'resume' },
{ href: '/about', title: 'About' }, { href: '/about', title: 'about' },
] ]
export default headerNavLinks export default headerNavLinks