added footer

This commit is contained in:
StevanFreeborn
2022-06-25 12:00:55 -05:00
parent 60215c4279
commit 0447157364
5 changed files with 72 additions and 6 deletions
+3 -1
View File
@@ -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>
);
}