Make zapwall.fr in footer clickable link to home page

- Convert footer title to Link component pointing to /
- Add hover effect (neon-cyan) for consistency
- Maintains same styling
This commit is contained in:
Nicolas Cantu 2025-12-27 23:12:56 +01:00
parent e4ac155281
commit fe48440a27

View File

@ -20,7 +20,10 @@ export function Footer() {
</Link> </Link>
</div> </div>
<div className="text-cyber-accent/50"> <div className="text-cyber-accent/50">
© {new Date().getFullYear()} {t('home.title')} © {new Date().getFullYear()}{' '}
<Link href="/" className="hover:text-neon-cyan transition-colors">
{t('home.title')}
</Link>
</div> </div>
</div> </div>
</div> </div>