Update text-white to text-amber-50

This commit is contained in:
UltraLionFr
2025-07-29 07:44:41 +02:00
parent 6f02f96739
commit 3289436ef3
16 changed files with 41 additions and 41 deletions
+2 -2
View File
@@ -34,12 +34,12 @@ export default async function UserProfilePage({ params }: Props) {
return (
<section className="p-4">
<Banner />
<h1 className="text-2xl font-bold text-white text-center">
<h1 className="text-2xl font-bold text-amber-50 text-center">
Projets de <span className="text-yellow-300">{username}</span>
</h1>
{projects.length === 0 ? (
<p className="mt-4 text-white/60">Aucun projet enregistré.</p>
<p className="mt-4 text-amber-50/60">Aucun projet enregistré.</p>
) : (
<ProjectsTable data={projects} hidePlayerFilter />
)}