make splat viewer the app's only view

Root route renders SplatViewer directly; removed template tabs,
home/explore screens and modal.
This commit is contained in:
Lars Nolden
2026-08-11 18:11:30 +02:00
parent b463af35d0
commit f1b9ee7a4a
7 changed files with 4 additions and 306 deletions
+5
View File
@@ -0,0 +1,5 @@
import { SplatViewer } from '@/components/splat-viewer';
export default function SplatScreen() {
return <SplatViewer />;
}