From 35853ff9884ce942a1107c166e3e63308dec54ea Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 27 Sep 2025 17:04:31 +0300 Subject: [PATCH] fix(website): logo not working in subfolder --- apps/website/src/components/Header.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/website/src/components/Header.tsx b/apps/website/src/components/Header.tsx index 402e4a640..32bad58af 100644 --- a/apps/website/src/components/Header.tsx +++ b/apps/website/src/components/Header.tsx @@ -1,6 +1,7 @@ import "./Header.css"; import { useLocation } from 'preact-iso'; import DownloadButton from './DownloadButton'; +import logoPath from "../assets/icon-color.svg"; interface HeaderLink { url: string; @@ -20,7 +21,7 @@ export function Header() {