diff --git a/.gitignore b/.gitignore index 8b9deffc..dcb5be09 100644 --- a/.gitignore +++ b/.gitignore @@ -60,6 +60,8 @@ yarn-error.log* # Misc .DS_Store .env +.env.dev +.env.prod .env.local .env.development.local .env.test.local diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 1f3e802b..76745078 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -21,6 +21,7 @@ import axios from 'axios'; import { colors } from './colors'; import SearchResultsPage from './pages/SearchResultsPage'; import { isAdmin } from './utils/adminTool'; +import LandingPage from './pages/LandingPage'; const theme = createTheme({ palette: { @@ -101,7 +102,8 @@ const App = (): ReactElement => { return ( - + + {/*
@@ -124,7 +126,7 @@ const App = (): ReactElement => {