Skip to content

Commit 096bf6d

Browse files
committed
fix: add /design prefix to homepage hero links
- Update homepage hero navigation links to include /design path - Ensures proper routing to Brand and Product pages - Fixes navigation functionality for hero section buttons - Maintains consistent URL structure across the application
1 parent 4309804 commit 096bf6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/sections/Hero.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,15 @@ const Hero = () => {
9696
{t('hero.explore')}
9797
</motion.a>
9898
<motion.a
99-
href="/brand/"
99+
href="/design/brand/"
100100
whileHover={{ scale: 1.02, y: -1 }}
101101
whileTap={{ scale: 0.98 }}
102102
className="px-6 py-3 border border-border/50 text-foreground rounded-lg font-medium hover:border-border hover:bg-muted/50 transition-all duration-150 focus-ring"
103103
>
104104
{t('hero.brand')}
105105
</motion.a>
106106
<motion.a
107-
href="/product/"
107+
href="/design/product/"
108108
whileHover={{ scale: 1.02, y: -1 }}
109109
whileTap={{ scale: 0.98 }}
110110
className="px-6 py-3 border border-border/50 text-foreground rounded-lg font-medium hover:border-border hover:bg-muted/50 transition-all duration-150 focus-ring"

0 commit comments

Comments
 (0)