added footer
This commit is contained in:
+3
-1
@@ -6,15 +6,17 @@ import './styles/app.css';
|
||||
import NavBar from './components/navbar';
|
||||
import Home from './pages/home';
|
||||
import About from './pages/about';
|
||||
import Footer from './components/footer';
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
<div>
|
||||
<div className='d-flex flex-column min-vh-100'>
|
||||
<NavBar/>
|
||||
<Routes>
|
||||
<Route path='/' element={<Home/>}/>
|
||||
<Route path='/About' element={<About/>}/>
|
||||
</Routes>
|
||||
<Footer/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user