This commit is contained in:
Owen
2025-10-04 18:36:44 -07:00
parent 3123f858bb
commit c2c907852d
320 changed files with 35785 additions and 2984 deletions

View File

@@ -27,10 +27,12 @@ export default function BrandingLogo(props: BrandingLogoProps) {
}
if (lightOrDark === "light") {
return "/logo/word_mark_black.png";
return (
env.branding.logo?.lightPath || "/logo/word_mark_black.png"
);
}
return "/logo/word_mark_white.png";
return env.branding.logo?.darkPath || "/logo/word_mark_white.png";
}
const path = getPath();