feat: add Sponsor Us link to footer quick links section

- Add highlighted "Sponsor Us" button in footer Quick Links
- Style with bold font (fontWeight 600) and yellow color (secondary.main)
- Add translations for all 4 languages:
  - English: "Sponsor Us"
  - Romanian: "Sprijină-ne"
  - Spanish: "Patrocínanos"
  - Italian: "Sostienici"
- Both Home and Sponsor Us links route to landing page

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-10-11 07:28:54 +00:00
parent 717580ddde
commit c4be60e387
5 changed files with 16 additions and 0 deletions

View File

@@ -123,6 +123,18 @@ export function Footer() {
>
{t('footer.quickLinks.home')}
</Button>
<Button
color="inherit"
sx={{
justifyContent: 'flex-start',
p: 0,
fontWeight: 600,
color: 'secondary.main'
}}
onClick={() => router.push(`/${locale}`)}
>
{t('footer.quickLinks.sponsor')}
</Button>
<Button
color="inherit"
sx={{ justifyContent: 'flex-start', p: 0 }}