feat(ui): path-based app-router routes with 404 and project auth preview

Resolve routes from pathname (and legacy hash), add a notFound route with
a dedicated 404 page, and show a blurred workspace preview for
unauthenticated project visits. Wire up Next.js app-router entry files and
listen for popstate so history navigation updates the route.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-08 12:07:13 +08:00
parent 92343ef1f6
commit 4e98a81aae
9 changed files with 592 additions and 15 deletions
+7
View File
@@ -0,0 +1,7 @@
"use client";
import { ClientRoot } from "@/app/root";
export default function ProjectsPage() {
return <ClientRoot />;
}