diff --git a/src/App.tsx b/src/App.tsx
index 00a16eb..7b72dc8 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -6,6 +6,7 @@ import { BrowserRouter, Routes, Route } from "react-router-dom";
import Index from "./pages/Index";
import Viewer from "./pages/Viewer";
import XRSession from "./pages/XRSession";
+import Watch from "./pages/Watch";
import NotFound from "./pages/NotFound";
const queryClient = new QueryClient();
@@ -20,6 +21,7 @@ const App = () => (
} />
} />
} />
+ } />
} />
diff --git a/src/components/XRHud.tsx b/src/components/XRHud.tsx
index e7c9866..30d04a2 100644
--- a/src/components/XRHud.tsx
+++ b/src/components/XRHud.tsx
@@ -11,6 +11,7 @@ import { useModelStore } from '@/stores/useModelStore';
import { InspectionChecklist } from '@/components/InspectionChecklist';
import { ScaleSelector } from '@/components/ScaleSelector';
import { CloudLoader } from '@/components/CloudLoader';
+import { ShareButton } from '@/components/ShareButton';
import { toast } from 'sonner';
const POSITION_STEP = 0.001;
@@ -318,6 +319,9 @@ export function XRHud({ freeMove, onToggleFreeMove, placementMode = false, onTog
{/* Cloud loader (acessível também no AR) */}
+ {/* Share live screen */}
+
+