diff --git a/src/App.tsx b/src/App.tsx index e1b298e..1dc8a85 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,84 +4,20 @@ import Navbar from './components/Navbar'; import TopBar from './components/TopBar'; import SplashScreen from './components/SplashScreen'; import {BrowserRouter, Route, Routes, useLocation} from 'react-router-dom'; -import {formatDateSimple} from './utils/DateUtils'; import Feed from "./pages/Feed.tsx"; import DreamPage from "./pages/DreamPage.tsx"; import ProfilePage from "./pages/ProfilePage.tsx"; import Home from "./pages/Home.tsx"; import Overview from "./pages/Overview.tsx"; import ChipOverview from "./pages/ChipOverview.tsx"; - -function Archive() { - return ( -
-

Dream Archive

- -
-
- -
-
- -
-
- -
- {[1, 2, 3].map((item) => ( -
-
-

- Dream #{item} -

- - {formatDateSimple(new Date())} - -
-

- Lorem ipsum dolor sit amet, consectetur adipiscing elit. - Vivamus lacinia, nunc eu tincidunt faucibus... -

-
- -
-
- ))} -
-
- ); -} - +import DreamArchiveIndex from "./pages/dreamarchive/DreamArchiveIndex.tsx"; +import WorldwideEvents from "./pages/dreamarchive/WorldwideEvents.tsx"; +import CulturalLandscapes from "./pages/dreamarchive/CulturalLandscapes.tsx"; +import LivingConditions from "./pages/dreamarchive/LivingConditions.tsx"; +import Technology from "./pages/dreamarchive/Technology.tsx"; +import UserDreams from "./pages/dreamarchive/UserDreams.tsx"; +import ResearchLive from "./pages/dreamarchive/ResearchLive.tsx"; +import ScrollToTop from "./components/ScrollToTop.tsx"; export default function App() { const [isLoading, setIsLoading] = useState(true); @@ -97,6 +33,7 @@ export default function App() { return (
+
@@ -119,7 +56,13 @@ function AppContent() { }/> }/> }/> - }/> + }/> + }/> + }/> + }/> + }/> + }/> + }/> }/> }/> diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index d940c42..f7e2f8b 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -6,7 +6,7 @@ import {getBackgroundStyle} from '../styles/StyleUtils'; export default function Navbar() { return (<>