style: simplify gallery UI and rename route

This commit is contained in:
Tom Boullay
2026-05-25 17:13:21 +02:00
parent 36180279b2
commit e9fb36f9dc
6 changed files with 453 additions and 349 deletions
+2 -2
View File
@@ -6,7 +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 { GalleryPage } from "@/pages/gallery/page";
import {
DocsAnimationRoute,
DocsAudioRoute,
@@ -47,7 +47,7 @@ const editorRoute = createRoute({
const galleryRoute = createRoute({
getParentRoute: () => rootRoute,
path: "/galerie",
path: "/gallery",
component: GalleryPage,
});