Skip to content

Commit

Permalink
Merge pull request #83 from subhamBharadwaz/enhancement/code-refactor
Browse files Browse the repository at this point in the history
fix: 🐛 Footer Links Href
  • Loading branch information
subhamBharadwaz authored Aug 20, 2024
2 parents c81cff2 + 959e3d6 commit 3c3a0a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/components/site-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ const SiteFooter: FC<SiteFooterProps> = ({ className }) => {
<li>
<Link
className="text-sm text-muted-foreground transition-colors duration-200 ease-in-out hover:text-accent-foreground"
href="#features"
href="/#features"
>
Features
</Link>
</li>
<li>
<Link
className="text-sm text-muted-foreground transition-colors duration-200 ease-in-out hover:text-accent-foreground"
href="#pricing"
href="/#pricing"
>
Pricing
</Link>
Expand All @@ -90,7 +90,7 @@ const SiteFooter: FC<SiteFooterProps> = ({ className }) => {
<li>
<Link
className="text-sm text-muted-foreground transition-colors duration-200 ease-in-out hover:text-accent-foreground"
href="#pricing"
href="/"
>
About us
</Link>
Expand Down
4 changes: 2 additions & 2 deletions src/config/marketing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ export const marketingConfig: MarketingConfig = {
mainNav: [
{
title: "Features",
href: "#features",
href: "/#features",
},
{
title: "Pricing",
href: "#pricing",
href: "/#pricing",
},
{
title: "Journal",
Expand Down

0 comments on commit 3c3a0a2

Please sign in to comment.