feat: add model gallery viewer

This commit is contained in:
Tom Boullay
2026-05-25 16:23:36 +02:00
parent 7785a6c9d7
commit 626dc47bbe
4 changed files with 594 additions and 0 deletions
+8
View File
@@ -6,6 +6,7 @@ import {
} from "@tanstack/react-router";
import { HomePage } from "@/pages/page";
import { EditorPage } from "@/pages/editor/page";
import { GalleryPage } from "@/pages/galerie/page";
import {
DocsAnimationRoute,
DocsAudioRoute,
@@ -43,6 +44,12 @@ const editorRoute = createRoute({
component: EditorPage,
});
const galleryRoute = createRoute({
getParentRoute: () => rootRoute,
path: "/galerie",
component: GalleryPage,
});
const docsRoute = createRoute({
getParentRoute: () => rootRoute,
path: "/docs",
@@ -78,6 +85,7 @@ const docsChildRoutes = [
const routeTree = rootRoute.addChildren([
indexRoute,
editorRoute,
galleryRoute,
docsRoute.addChildren(docsChildRoutes),
]);