Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
tohit1009 committed Oct 14, 2024
1 parent 8052f57 commit a254e22
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// App.jsx

import React from "react";
import { BrowserRouter as Router, Route, Routes } from "react-router-dom";
import Dashboard from "./pages/Dashboard";
Expand All @@ -7,8 +7,8 @@ import Analytics from "./pages/Analytics";
import Navbar from "./components/Navbar";
import './App.css'
import Footer from "./components/Footer";
import Settings from './pages/Settings'; // Ensure this path is correct
import LandingPage from './pages/LandingPage'; // Ensure this path is correct
import Settings from './pages/settings';
import LandingPage from './pages/LandingPage';

function App() {
return (
Expand All @@ -21,6 +21,7 @@ function App() {
<Route path="/posts" element={<Posts />} />
<Route path="/analytics" element={<Analytics />} />
<Route path="/settings" element={<Settings />} />

</Routes>
</div>
<Footer/>
Expand Down

0 comments on commit a254e22

Please sign in to comment.