I'm trying to link to different section within the same page from a Header component:
<Link href='#work' scroll={false}> <Link href={'#about'}>About</Link>
Both of these change the url to /#<section> but the UI doesn't change.
If I refresh with /#about in the url it takes me there.
I have tried with and without 'use client' in Header.tsx
What's going on and how do I make it navigate to the different sections?