🚀 Auto-deploy: melhoria no snap e medição AR em 20/07/2026 20:08:44

This commit is contained in:
2026-07-20 20:08:44 +00:00
parent 7bd45e473d
commit 34ac745cc0
4 changed files with 567 additions and 0 deletions
+2
View File
@@ -9,6 +9,7 @@ import XRSession from "./pages/XRSession";
import Watch from "./pages/Watch";
import MeetingRoom from "./pages/MeetingRoom";
import NotFound from "./pages/NotFound";
import QuestCubeLab from "./lab/QuestCubeLab";
import "@/lib/remoteLogger";
const queryClient = new QueryClient();
@@ -26,6 +27,7 @@ const App = () => (
<Route path="/watch/:code" element={<Watch />} />
<Route path="/meeting" element={<MeetingRoom />} />
<Route path="/meeting/:roomId" element={<MeetingRoom />} />
<Route path="/lab" element={<QuestCubeLab />} />
<Route path="*" element={<NotFound />} />
</Routes>
</BrowserRouter>