Skip to content

Commit

Permalink
fix: empty link
Browse files Browse the repository at this point in the history
  • Loading branch information
vdhieu committed Dec 13, 2023
1 parent d73df97 commit 98d0de1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions components/layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ export default function Footer() {
title: 'Resources',
links: [
{
href: '/#gallery',
href: '#gallery',
text: 'Gallery',
},
{
href: '/#about',
href: '#about',
text: 'About',
},
{
Expand All @@ -92,12 +92,12 @@ export default function Footer() {
},
{
Icon: () => <Discord />,
href: '/',
href: '#',
title: 'Discord',
},
{
Icon: () => <Telegram />,
href: '/',
href: '#',
title: 'Telegram',
},
]}
Expand Down
4 changes: 2 additions & 2 deletions components/layout/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ const shareItems = [
color="neutral"
className="!flex !justify-start !font-medium !text-zinc-800"
key="gallery-link-btn"
href="/#gallery"
href="#gallery"
>
Gallery
</Button>,
<Button
as="a"
href="/#about"
href="#about"
variant="ghost"
color="neutral"
className="!flex !justify-start !font-medium !text-zinc-800"
Expand Down

0 comments on commit 98d0de1

Please sign in to comment.