From 43e9293d0c4e2e67f9cccd4987432b80f01c131c Mon Sep 17 00:00:00 2001 From: Mike Fortman Date: Thu, 23 Oct 2025 21:27:18 -0500 Subject: [PATCH] Branding and styling --- frontend/components/logo/dog-icon.tsx | 31 +++++++++---------- frontend/components/logo/logo.tsx | 16 ++-------- frontend/src/app/auth/callback/page.tsx | 4 +-- frontend/src/app/layout.tsx | 2 +- frontend/src/app/login/page.tsx | 21 +++---------- .../components/progress-bar.tsx | 2 +- .../onboarding/components/onboarding-card.tsx | 1 - 7 files changed, 25 insertions(+), 52 deletions(-) diff --git a/frontend/components/logo/dog-icon.tsx b/frontend/components/logo/dog-icon.tsx index ce0b4104..03158f17 100644 --- a/frontend/components/logo/dog-icon.tsx +++ b/frontend/components/logo/dog-icon.tsx @@ -3,25 +3,22 @@ interface DogIconProps extends React.SVGProps { } const DogIcon = ({ disabled = false, stroke, ...props }: DogIconProps) => { - const strokeColor = disabled ? "#71717A" : (stroke || "#0F62FE"); + const fillColor = disabled ? "#71717A" : (stroke || "#22A7AF"); return ( - - - + disabled ? ( + + + + + ) : ( + + + + + + + ) ) } diff --git a/frontend/components/logo/logo.tsx b/frontend/components/logo/logo.tsx index 018665de..97b33198 100644 --- a/frontend/components/logo/logo.tsx +++ b/frontend/components/logo/logo.tsx @@ -1,19 +1,9 @@ export default function Logo(props: React.SVGProps) { return ( - + OpenRAG Logo - - - + + ); } diff --git a/frontend/src/app/auth/callback/page.tsx b/frontend/src/app/auth/callback/page.tsx index 780b45b6..8c1683cf 100644 --- a/frontend/src/app/auth/callback/page.tsx +++ b/frontend/src/app/auth/callback/page.tsx @@ -158,8 +158,8 @@ function AuthCallbackContent() { } return ( -
- +
+ {status === "processing" && ( diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx index 10ed826b..16db9579 100644 --- a/frontend/src/app/layout.tsx +++ b/frontend/src/app/layout.tsx @@ -38,7 +38,7 @@ export default function RootLayout({ return ( - -
- -
+
+
+ +

Welcome to OpenRAG

diff --git a/frontend/src/app/onboarding/components/onboarding-card.tsx b/frontend/src/app/onboarding/components/onboarding-card.tsx index 745dd076..8dc60c91 100644 --- a/frontend/src/app/onboarding/components/onboarding-card.tsx +++ b/frontend/src/app/onboarding/components/onboarding-card.tsx @@ -46,7 +46,6 @@ const STEP_LIST = [ const TOTAL_PROVIDER_STEPS = STEP_LIST.length; const OnboardingCard = ({ onComplete }: OnboardingCardProps) => { - const updatedOnboarding = process.env.UPDATED_ONBOARDING === "true"; const { isHealthy: isDoclingHealthy } = useDoclingHealth(); const [modelProvider, setModelProvider] = useState("openai");