🚀 Auto-deploy: melhoria no snap e medição AR em 24/05/2026 23:58:44

This commit is contained in:
2026-05-24 23:58:44 +00:00
parent c953db0b26
commit de8558b81c
3 changed files with 837 additions and 1 deletions
+3
View File
@@ -7,6 +7,7 @@ import Index from "./pages/Index";
import Viewer from "./pages/Viewer";
import XRSession from "./pages/XRSession";
import Watch from "./pages/Watch";
import MeetingRoom from "./pages/MeetingRoom";
import NotFound from "./pages/NotFound";
import "@/lib/remoteLogger";
@@ -23,6 +24,8 @@ const App = () => (
<Route path="/viewer" element={<Viewer />} />
<Route path="/xr" element={<XRSession />} />
<Route path="/watch/:code" element={<Watch />} />
<Route path="/meeting" element={<MeetingRoom />} />
<Route path="/meeting/:roomId" element={<MeetingRoom />} />
<Route path="*" element={<NotFound />} />
</Routes>
</BrowserRouter>