Make zapwall.fr title clickable link to home page

- Convert PageHeader title to Link component pointing to /
- Add hover effect (neon-green) for better UX
- Maintains same styling and appearance
This commit is contained in:
Nicolas Cantu 2025-12-27 23:12:25 +01:00
parent 449b2f4711
commit e4ac155281

View File

@ -6,7 +6,9 @@ export function PageHeader() {
return ( return (
<header className="bg-cyber-dark border-b border-neon-cyan/30 shadow-glow-cyan"> <header className="bg-cyber-dark border-b border-neon-cyan/30 shadow-glow-cyan">
<div className="max-w-4xl mx-auto px-4 py-4 flex justify-between items-center"> <div className="max-w-4xl mx-auto px-4 py-4 flex justify-between items-center">
<h1 className="text-2xl font-bold text-neon-cyan text-glow-cyan font-mono">{t('home.title')}</h1> <Link href="/" className="text-2xl font-bold text-neon-cyan text-glow-cyan font-mono hover:text-neon-green transition-colors">
{t('home.title')}
</Link>
<div className="flex items-center gap-4"> <div className="flex items-center gap-4">
<Link <Link
href="/docs" href="/docs"