test: prove TechLog UI migration parity

This commit is contained in:
DongHyeonka
2026-08-16 02:48:26 +09:00
parent c5c8b9423c
commit 6c2780b7a7
176 changed files with 2393 additions and 616 deletions
@@ -13,7 +13,9 @@ const navigation = [
export function SiteHeader({ currentPath }: { currentPath?: string }) {
const location = useLocation();
const activePath = currentPath ?? location.pathname;
const activePath =
currentPath ??
(location.pathname.startsWith("/topics/") ? "/explore" : location.pathname);
const menuRef = useRef<HTMLDetailsElement>(null);
const summaryRef = useRef<HTMLElement>(null);