Changing assets with new DA.

This commit is contained in:
charlesgauthereau
2025-12-23 22:06:14 +01:00
parent 5302060f44
commit 36adcb323a
14 changed files with 5 additions and 7 deletions
@@ -16,8 +16,8 @@ export const AuthLogoSection = () => {
const imageTheme =
resolvedTheme === "dark"
? "/images/logo-white.png"
: "/images/logo-black.png";
? "/images/logo-dark.png"
: "/images/logo-light.png";
const handleLoad = () => setLoaded(true);
@@ -25,7 +25,7 @@ export const SidebarLogo = ({ projectName }: { projectName: string }) => {
);
const imageTheme =
resolvedTheme === "dark" ? "/images/logo-white.png" : "/images/logo-black.png";
resolvedTheme === "dark" ? "/images/logo-dark.png" : "/images/logo-light.png";
const handleLoad = () => setLoaded(true);