From 2b53a449d1673b4c165f988a573466fc969d299c Mon Sep 17 00:00:00 2001 From: Oussama Douhou Date: Tue, 13 Jan 2026 17:06:15 +0100 Subject: [PATCH] feat: Make background effect clearer and more visible MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Increased dotSize from 2 to 6 (matches auth page) - Disabled showGradient to remove internal darkening - Lightened radial gradient: 100% opacity → 50%, 100% radius → 60% - Lightened top gradient: solid black → 80% opacity The dot matrix effect is now much more visible like on /auth page --- client/src/pages/DeployPage.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/client/src/pages/DeployPage.tsx b/client/src/pages/DeployPage.tsx index 6a8dc50..0aff7b4 100644 --- a/client/src/pages/DeployPage.tsx +++ b/client/src/pages/DeployPage.tsx @@ -115,11 +115,12 @@ export default function DeployPage() { animationSpeed={3} containerClassName="bg-black" colors={[[255, 255, 255], [255, 255, 255]]} - dotSize={2} + dotSize={6} + showGradient={false} /> -
-
+
+