-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.jsx
More file actions
32 lines (28 loc) · 886 Bytes
/
App.jsx
File metadata and controls
32 lines (28 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { Routes, Route } from "react-router-dom";
import Navbar from './Component/Navbar'
import Footer from './Component/Footer'
import Home from './Component/Home'
import Visualizer from './Component/Visualizer'
import Pricing from './Component/Pricing'
function App() {
return (
<>
{/* Force black background */}
<div className="min-h-screen flex flex-col" style={{ backgroundColor: "black", color: "white" }}>
{/* Navbar at top */}
<Navbar />
{/* Main content area */}
<main className="flex-1">
<Routes>
<Route path="/" element={<Home />} />
<Route path="/Visualizer" element={<Visualizer />} />
<Route path="/Pricing" element={<Pricing />} />
</Routes>
</main>
{/* Footer at bottom */}
<Footer />
</div>
</>
);
}
export default App;