feat(workspaces): add workspace management page

This commit is contained in:
2026-03-12 20:51:41 +08:00
parent 2ffd1efc61
commit 5e4f4ec6e4
9 changed files with 224 additions and 33 deletions

View File

@@ -7,6 +7,7 @@ import { WorkspaceProvider } from "./context/WorkspaceContext"
import Auth from "./pages/Auth"
import Profile from "./pages/Profile"
import Terms from "./pages/Terms"
import Workspaces from "./pages/Workspaces"
const MainLayout = () => {
return (
@@ -32,6 +33,7 @@ function App() {
<Route element={<MainLayout />}>
<Route path="/profile" element={<Profile />} />
<Route path="/workspaces" element={<Workspaces />} />
</Route>
</Routes>
</WorkspaceProvider>