Translate event details and UI text to French, including event names, descriptions, and status labels. Update navigation styles for consistency.

This commit is contained in:
Julien Froidefond
2025-12-08 17:22:14 +01:00
parent 4e6ce54e0f
commit c5bd94ec69
5 changed files with 196 additions and 48 deletions

View File

@@ -1,15 +1,17 @@
"use client";
import PlayerStats from "./PlayerStats";
export default function Navigation() {
return (
<nav className="w-full fixed top-0 left-0 z-50 px-8 py-6 bg-black/80 backdrop-blur-sm border-b border-gray-800/30">
<nav className="w-full fixed top-0 left-0 z-50 px-8 py-3 bg-black/80 backdrop-blur-sm border-b border-gray-800/30">
<div className="max-w-7xl mx-auto flex items-center justify-between">
{/* Logo - Left */}
<div className="flex flex-col">
<div className="text-white text-2xl font-gaming font-bold tracking-tight">
<div className="text-white text-xl font-gaming font-bold tracking-tight">
GAME.OF.TECH
</div>
<div className="text-pixel-gold text-sm font-gaming-subtitle font-semibold flex items-center gap-1 tracking-wide">
<div className="text-pixel-gold text-xs font-gaming-subtitle font-semibold flex items-center gap-1 tracking-wide">
<span></span>
<span>Game of Tech</span>
<span></span>
@@ -38,11 +40,9 @@ export default function Navigation() {
</a>
</div>
{/* Play Now Button - Right */}
{/* Player Stats - Right */}
<div>
<button className="px-6 py-2 border border-pixel-gold/50 bg-black/40 text-white uppercase text-xs tracking-widest rounded hover:bg-pixel-gold/10 hover:border-pixel-gold transition">
PLAY NOW
</button>
<PlayerStats />
</div>
</div>
</nav>