updated styles

This commit is contained in:
andres alcocer
2021-10-08 19:57:36 -04:00
parent 4a82c29a7b
commit 48dad9f32b
6 changed files with 33 additions and 38 deletions

View File

@@ -5,6 +5,7 @@ import Home from './pages/Home'
import NotFound from './pages/NotFound'
import Search from './pages/Search'
import Navbar from './components/Navbar'
import Footer from './components/Footer'
const AppRouter = () => (
<BrowserRouter>
@@ -15,6 +16,7 @@ const AppRouter = () => (
<Route path='/search' component={Search} />
<Route component={NotFound} />
</Switch>
<Footer />
</BrowserRouter>
)