@@ -3,7 +3,9 @@ import { BrowserRouter, Route, Routes } from "react-router-dom";
33import Footer from "./components/Footer/index.tsx" ;
44import Header from "./components/Header/index.tsx" ;
55import { queryClient } from "./lib/tanstack/client.ts" ;
6+ import Edit from "./pages/Edit.tsx" ;
67import Profile from "./pages/Profile.tsx" ;
8+ import Settings from "./pages/Settings.tsx" ;
79import Setup from "./pages/Setup.tsx" ;
810import SignIn from "./pages/SignIn.tsx" ;
911import AboutUs from "./pages/static/AboutUs.tsx" ;
@@ -12,6 +14,7 @@ import HowToUse from "./pages/static/how-to-use/page.tsx";
1214import Landing from "./pages/static/LP.tsx" ;
1315import NotFound from "./pages/static/NotFound.tsx" ;
1416import Notion from "./pages/static/Notion.tsx" ;
17+ import View from "./pages/View.tsx" ;
1518import { ThemeContext , useThemeService } from "./services/theme/index.ts" ;
1619
1720export default function App ( ) {
@@ -26,6 +29,9 @@ export default function App() {
2629 < Header />
2730 < Routes >
2831 < Route path = "/" element = { < Landing /> } />
32+ < Route path = "/edit" element = { < Edit /> } />
33+ < Route path = "/view" element = { < View /> } />
34+ < Route path = "/settings" element = { < Settings /> } />
2935 < Route path = "/aboutus" element = { < AboutUs /> } />
3036 < Route path = "/disclaimer" element = { < Disclaimer /> } />
3137 < Route path = "/how-to-use" element = { < HowToUse /> } />
0 commit comments