Merge branch 'develop' into feat/main-feature

This commit is contained in:
Tom Boullay
2026-04-30 15:48:35 +02:00
17 changed files with 808 additions and 18 deletions
+8
View File
@@ -43,6 +43,10 @@ const LazyDocsHandTrackingPage = lazyNamed(
() => import("@/pages/docs/hand-tracking/page"),
"DocsHandTrackingPage",
);
const LazyDocsZustandPage = lazyNamed(
() => import("@/pages/docs/zustand/page"),
"DocsZustandPage",
);
const LazyDocsFeaturesPage = lazyNamed(
() => import("@/pages/docs/features/page"),
"DocsFeaturesPage",
@@ -84,6 +88,10 @@ export function DocsHandTrackingRoute(): React.JSX.Element {
return withDocsSuspense(LazyDocsHandTrackingPage);
}
export function DocsZustandRoute(): React.JSX.Element {
return withDocsSuspense(LazyDocsZustandPage);
}
export function DocsFeaturesRoute(): React.JSX.Element {
return withDocsSuspense(LazyDocsFeaturesPage);
}