From 57e10a36940c21cd32b1eecdf263e94199c3912f Mon Sep 17 00:00:00 2001 From: Nicholas Kissel Date: Wed, 26 Aug 2026 21:34:53 -0700 Subject: [PATCH] feat(frontend): match dashboard logo to website --- frontend/src/app/layout.tsx | 2 +- frontend/src/app/logo.tsx | 21 ++++++++++--------- frontend/src/app/top-bar.tsx | 2 +- .../src/components/fullscreen-loading.tsx | 7 ++----- 4 files changed, 15 insertions(+), 17 deletions(-) diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx index f5ed747e32..9c8bf976a9 100644 --- a/frontend/src/app/layout.tsx +++ b/frontend/src/app/layout.tsx @@ -774,7 +774,7 @@ export const SidebarlessHeader = () => { return (
- + diff --git a/frontend/src/app/logo.tsx b/frontend/src/app/logo.tsx index b506d0652c..62e2e3b837 100644 --- a/frontend/src/app/logo.tsx +++ b/frontend/src/app/logo.tsx @@ -1,27 +1,28 @@ export function LogoMark({ className }: { className?: string }) { return ( + ); diff --git a/frontend/src/app/top-bar.tsx b/frontend/src/app/top-bar.tsx index 3d0ae6a482..979f1333e1 100644 --- a/frontend/src/app/top-bar.tsx +++ b/frontend/src/app/top-bar.tsx @@ -22,7 +22,7 @@ export function TopBar() { function TopBarLogo() { return ( - + ); } diff --git a/frontend/src/components/fullscreen-loading.tsx b/frontend/src/components/fullscreen-loading.tsx index 89de3c8331..e91e8eb443 100644 --- a/frontend/src/components/fullscreen-loading.tsx +++ b/frontend/src/components/fullscreen-loading.tsx @@ -1,4 +1,4 @@ -import { AssetImage } from "./asset-image"; +import { LogoMark } from "@/app/logo"; export function FullscreenLoading({ children, @@ -7,10 +7,7 @@ export function FullscreenLoading({ }) { return (
- + {children}
);