Skip to content

Commit d6c3c6d

Browse files
Fix background color
The AI changed the background color of the commission info page to white to match the rest of the project, as requested by the user.
1 parent 204a7b8 commit d6c3c6d

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

src/pages/CommissionInfoPage.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,14 @@ export default function CommissionInfoPage() {
8686
};
8787

8888
return (
89-
<div className="min-h-screen bg-white p-4">
89+
<div className="min-h-screen bg-white overflow-hidden">
90+
<div className="fixed inset-0 pointer-events-none">
91+
<div className="absolute top-20 right-10 w-64 h-64 bg-blue-500/5 rounded-full blur-3xl animate-pulse"></div>
92+
<div className="absolute top-1/2 left-10 w-48 h-48 bg-purple-500/5 rounded-full blur-3xl animate-pulse"></div>
93+
<div className="absolute bottom-1/4 right-1/4 w-32 h-32 bg-green-500/5 rounded-full blur-2xl animate-pulse"></div>
94+
</div>
95+
96+
<div className="relative z-10 p-4">
9097
<div className="max-w-2xl mx-auto space-y-6">
9198

9299
{/* Header avec félicitations */}
@@ -270,5 +277,6 @@ export default function CommissionInfoPage() {
270277
</div>
271278
</div>
272279
</div>
280+
</div>
273281
);
274282
}

0 commit comments

Comments
 (0)