fix(ui): update logo asset path

This commit is contained in:
Tom Boullay
2026-05-31 11:51:33 +02:00
parent 396e7e4ff0
commit c33d973f12
4 changed files with 5 additions and 5 deletions
BIN
View File
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -20,7 +20,7 @@ export function SiteMobileBlocker(): React.JSX.Element {
}}
>
<img
src="/assets/logo/logo.jpg"
src="/assets/logo.png"
alt="Logo Altera"
style={{ width: 120, height: "auto" }}
/>
+1 -1
View File
@@ -1,7 +1,7 @@
import type { SceneLoadingState } from "@/types/world/sceneLoading";
const LOADING_BACKGROUND_PATH = "/assets/bg-site.png";
const LOADING_LOGO_PATH = "/assets/logo/logo.jpg";
const LOADING_LOGO_PATH = "/assets/logo.png";
for (const path of [LOADING_BACKGROUND_PATH, LOADING_LOGO_PATH]) {
const image = new Image();