feat: add Home link to footer quick links section

- Added "Home" link as first item in footer quick links
- Routes to landing page (homepage)
- Added translations for all 4 languages:
  - English: "Home"
  - Romanian: "Acasă"
  - Spanish: "Inicio"
  - Italian: "Home"

Build:  Successful

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-10-11 06:04:05 +00:00
parent 79f1512f3a
commit 717580ddde
5 changed files with 11 additions and 0 deletions

View File

@@ -116,6 +116,13 @@ export function Footer() {
</Typography>
<Box sx={{ display: 'flex', flexDirection: 'column', gap: 1 }}>
{/* Static important links */}
<Button
color="inherit"
sx={{ justifyContent: 'flex-start', p: 0 }}
onClick={() => router.push(`/${locale}`)}
>
{t('footer.quickLinks.home')}
</Button>
<Button
color="inherit"
sx={{ justifyContent: 'flex-start', p: 0 }}