feat: Latest production version with interior scene and glass
Includes room interior with floor, walls, glass you can see through, and all uncommitted production changes that were running live. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
16
bron/App.js
Normal file
16
bron/App.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import { BrowserRouter as Router, Route, Routes, Link } from "react-router-dom";
|
||||
import Endpoint from "./components/endpoint";
|
||||
import RequestConfirmation from "./pages/RequestConfirmation";
|
||||
import BubblesManager from "./pages/BubblesManager";
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
<Router>
|
||||
<Routes>
|
||||
<Route path="/" element={<Endpoint />} />
|
||||
<Route path="/request-confirmation" element={<RequestConfirmation />} />
|
||||
<Route path="/manage-bubble" element={<BubblesManager />} />
|
||||
</Routes>
|
||||
</Router>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user