From a006c6505cc02afcccfb1960d620f6b957224aa0 Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 17 Feb 2026 11:38:26 +0100 Subject: [PATCH] Onboarding: use ocean background image, show full expertise tag names - Replace blue gradient with ocean.png background (matches email templates) - Display expertise tags one per line with full names (no truncation) Co-Authored-By: Claude Opus 4.6 --- src/app/(auth)/onboarding/page.tsx | 4 ++-- src/components/shared/expertise-select.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/(auth)/onboarding/page.tsx b/src/app/(auth)/onboarding/page.tsx index 283d56a..c2dc95e 100644 --- a/src/app/(auth)/onboarding/page.tsx +++ b/src/app/(auth)/onboarding/page.tsx @@ -221,7 +221,7 @@ export default function OnboardingPage() { // Show loading while session hydrates or fetching user data if (sessionStatus === 'loading' || userLoading || !initialized) { return ( -
+
@@ -236,7 +236,7 @@ export default function OnboardingPage() { } return ( -
+
diff --git a/src/components/shared/expertise-select.tsx b/src/components/shared/expertise-select.tsx index cc5a4f9..6c9166b 100644 --- a/src/components/shared/expertise-select.tsx +++ b/src/components/shared/expertise-select.tsx @@ -212,7 +212,7 @@ export function ExpertiseSelect({ {isExpanded && ( -
+
{categoryTags.map((tag) => { const isSelected = value.includes(tag.name) const isLocked = isTagLocked(tag.name) @@ -261,7 +261,7 @@ export function ExpertiseSelect({ ))}
- {tag.name} + {tag.name} ) })}