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

@@ -7,16 +7,16 @@ interface Event {
const events: Event[] = [
{
date: "NOVEMBER 18th, 2023",
name: "Tech Innovation Summit",
date: "18 NOVEMBRE 2023",
name: "Sommet de l'Innovation Tech",
},
{
date: "DECEMBER 3rd, 2023",
name: "AI Revolution Launch",
date: "3 DÉCEMBRE 2023",
name: "Lancement de la Révolution IA",
},
{
date: "DECEMBER 22nd, 2023",
name: "Winter Code Festival",
date: "22 DÉCEMBRE 2023",
name: "Festival du Code d'Hiver",
},
];
@@ -29,7 +29,7 @@ export default function EventsSection() {
<div key={index} className="flex flex-col items-center">
<div className="flex flex-col items-center mb-4">
<span className="text-pixel-gold text-xs uppercase tracking-widest mb-2">
Event
Événement
</span>
<div className="w-16 h-px bg-pixel-gold"></div>
</div>
@@ -46,4 +46,3 @@ export default function EventsSection() {
</section>
);
}