From 33a16ab88f0d29d9250de896eff710732d10a4f0 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 9 Jun 2026 12:17:01 +0000 Subject: [PATCH 01/12] Center container with auto margins in globals.css --- app/globals.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/globals.css b/app/globals.css index 5e41121..cba60dc 100644 --- a/app/globals.css +++ b/app/globals.css @@ -113,6 +113,8 @@ body { align-items: center; justify-content: center; padding: 2rem; + margin-left: auto; + margin-right: auto; } @media (max-width: 480px) { From ac17159b5fd9e5efd7e146a808af513e80da22a0 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 9 Jun 2026 12:37:53 +0000 Subject: [PATCH 02/12] Refine main content centering with mx-auto utility --- app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/page.tsx b/app/page.tsx index c92e1b1..15c3c76 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -37,7 +37,7 @@ export default function Home() { {/* Main content - centered card */}

{t.title}

From c37318a046770e5e0902235f2e7202532d1e9b06 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 9 Jun 2026 13:03:38 +0000 Subject: [PATCH 03/12] Center coming-soon-card on screen with auto margin --- app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/page.tsx b/app/page.tsx index 15c3c76..d199e5e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -39,7 +39,7 @@ export default function Home() { id="main-content" className="fixed inset-0 z-10 flex items-center justify-center p-4 mx-auto" > -
+

{t.title}

{t.subtitle}

From dba9a501d98bd25f66ab4bf835b8eea5252f06bd Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 9 Jun 2026 13:04:42 +0000 Subject: [PATCH 04/12] Fix Coming Soon card centering with auto margin --- app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/page.tsx b/app/page.tsx index d199e5e..846e19b 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -39,7 +39,7 @@ export default function Home() { id="main-content" className="fixed inset-0 z-10 flex items-center justify-center p-4 mx-auto" > -
+

{t.title}

{t.subtitle}

From cf5420409f8d072bbebef330ab058064cf3f3a03 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 9 Jun 2026 13:21:18 +0000 Subject: [PATCH 05/12] Center coming soon card layout --- app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/page.tsx b/app/page.tsx index 846e19b..d55cd3e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -37,7 +37,7 @@ export default function Home() { {/* Main content - centered card */}

{t.title}

From d0ae0b3bb6ecfa6989efda340e1fb0263bacc851 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 9 Jun 2026 13:21:40 +0000 Subject: [PATCH 06/12] Remove inline margin style from coming-soon-card --- app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/page.tsx b/app/page.tsx index d55cd3e..c92e1b1 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -39,7 +39,7 @@ export default function Home() { id="main-content" className="fixed inset-0 z-10 flex items-center justify-center p-4" > -
+

{t.title}

{t.subtitle}

From 9c52a2193490d47023131318c036a6777c658add Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 9 Jun 2026 13:31:57 +0000 Subject: [PATCH 07/12] Fix coming soon card centering with explicit margin auto --- app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/page.tsx b/app/page.tsx index c92e1b1..d55cd3e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -39,7 +39,7 @@ export default function Home() { id="main-content" className="fixed inset-0 z-10 flex items-center justify-center p-4" > -
+

{t.title}

{t.subtitle}

From a7ea2785b8a935731c2fe896d4534494d5cc735f Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 9 Jun 2026 13:35:22 +0000 Subject: [PATCH 08/12] Add adaptive screen support for mobile and tablet devices --- app/globals.css | 48 ++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 46 insertions(+), 2 deletions(-) diff --git a/app/globals.css b/app/globals.css index cba60dc..3d636d9 100644 --- a/app/globals.css +++ b/app/globals.css @@ -117,8 +117,19 @@ body { margin-right: auto; } +@media (max-width: 768px) { + .coming-soon-card { + width: clamp(260px, 90vw, 420px); + height: clamp(260px, 90vw, 420px); + padding: 1.5rem; + } +} + @media (max-width: 480px) { .coming-soon-card { + width: clamp(240px, 85vw, 320px); + height: clamp(240px, 85vw, 320px); + padding: 1.25rem; border-radius: 1.125rem; } } @@ -136,9 +147,22 @@ body { margin-bottom: 0.75rem; } +@media (max-width: 768px) { + .coming-soon-title { + font-size: 2.25rem; + } +} + @media (max-width: 640px) { .coming-soon-title { - font-size: 2rem; + font-size: 1.75rem; + } +} + +@media (max-width: 480px) { + .coming-soon-title { + font-size: 1.5rem; + margin-bottom: 0.5rem; } } @@ -148,12 +172,24 @@ body { font-weight: 400; } -@media (max-width: 640px) { +@media (max-width: 768px) { .coming-soon-subtitle { font-size: 1rem; } } +@media (max-width: 640px) { + .coming-soon-subtitle { + font-size: 0.9rem; + } +} + +@media (max-width: 480px) { + .coming-soon-subtitle { + font-size: 0.8rem; + } +} + /* ======================================== LANGUAGE SELECTOR ======================================== */ @@ -226,6 +262,14 @@ body { text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); } +@media (max-width: 480px) { + .version-label { + font-size: 0.625rem; + bottom: 1rem; + right: 1rem; + } +} + /* ======================================== FOCUS & ACCESSIBILITY ======================================== */ From d80fc2ccf24951c9468e1a475dd8df68f7b9bfa1 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 9 Jun 2026 13:49:02 +0000 Subject: [PATCH 09/12] Remove "Select language" label from language selector --- app/page.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index d55cd3e..d414404 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -19,9 +19,6 @@ export default function Home() { {/* Language selector - top right */}
-