From 0d8e982f814d87d8b0311c809c299e42c5d42772 Mon Sep 17 00:00:00 2001 From: mawkone Date: Mon, 8 Jun 2026 10:47:27 -0700 Subject: [PATCH] =?UTF-8?q?design:=20remove=20trust=20bullet=20strip=20fro?= =?UTF-8?q?m=20signup,=20make=20=F0=9F=87=A8=F0=9F=87=A6=20Built=20in=20Ca?= =?UTF-8?q?nada=20single=20larger=20centered=20footer=20below=20card?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app/components/auth/AuthScreen.tsx | 32 +++---------------- vibn-frontend/app/components/auth/auth.css | 21 ++++-------- 2 files changed, 12 insertions(+), 41 deletions(-) diff --git a/vibn-frontend/app/components/auth/AuthScreen.tsx b/vibn-frontend/app/components/auth/AuthScreen.tsx index 5594b95..612fefa 100644 --- a/vibn-frontend/app/components/auth/AuthScreen.tsx +++ b/vibn-frontend/app/components/auth/AuthScreen.tsx @@ -72,10 +72,6 @@ export default function AuthScreen({ signIn("google", { callbackUrl: cb }); }; - const trust = isSignup - ? ["No credit card", "No homework", "🇨🇦 Built in Canada"] - : ["Built in Canada", "Your data stays safe", "No homework"]; - return (
@@ -135,7 +131,7 @@ export default function AuthScreen({

{isSignup ? ( <> - Create your workspace. + Create your account. ) : ( <> @@ -144,9 +140,7 @@ export default function AuthScreen({ )}

- {isSignup - ? "Set up your account with an email and password — you'll be building in seconds." - : "Pick up right where you left off."} + {isSignup ? null : "Pick up right where you left off."}

@@ -215,11 +209,11 @@ export default function AuthScreen({ {submitting ? ( <> {" "} - {isSignup ? "Creating your workspace…" : "Signing in…"} + {isSignup ? "Creating your account…" : "Signing in…"} ) : isSignup ? ( <> - Create my workspace + Create my account ) : ( <>Sign in @@ -270,7 +264,7 @@ export default function AuthScreen({
- +
🇨🇦 Built in Canada
@@ -318,22 +312,6 @@ function Glows() { ); } -function TrustStrip({ items }: { items: string[] }) { - return ( -
- {items.map((item, i) => ( - - {i > 0 && ·} - {item} - - ))} -
- ); -} - function Arrow({ size = 14 }: { size?: number }) { return (