Skip to content

Commit 6ab58f3

Browse files
committed
fix: add /design prefix to footer Foundations links
- Fix footer Foundations links to include /design prefix for basePath compatibility - Change /#section to /design/#section for all Foundations links - Ensures footer Foundations links work correctly in production - Maintains consistency with other footer links that already use /design prefix - Resolves issue where footer Foundations links were missing basePath
1 parent da4c965 commit 6ab58f3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/components/layout/Footer.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ const Footer = () => {
1111

1212
const footerLinks = {
1313
'Foundations': [
14-
{ name: t('footer.foundations.mission'), href: '/#mission-vision' },
15-
{ name: t('footer.foundations.philosophy'), href: '/#philosophy' },
16-
{ name: t('footer.foundations.values'), href: '/#values' },
17-
{ name: t('footer.foundations.team'), href: '/#team' },
18-
{ name: t('footer.foundations.tools'), href: '/#tools' },
14+
{ name: t('footer.foundations.mission'), href: '/design/#mission-vision' },
15+
{ name: t('footer.foundations.philosophy'), href: '/design/#philosophy' },
16+
{ name: t('footer.foundations.values'), href: '/design/#values' },
17+
{ name: t('footer.foundations.team'), href: '/design/#team' },
18+
{ name: t('footer.foundations.tools'), href: '/design/#tools' },
1919
],
2020
'Brand': [
2121
{ name: t('footer.brand.principles'), href: '/design/brand#principles' },

0 commit comments

Comments
 (0)