Add support for imprints

This commit is contained in:
Bastian Meissner 2020-09-08 13:18:58 +02:00
parent 5656d91845
commit a8f2136736
8 changed files with 358 additions and 60 deletions

View file

@ -5,10 +5,12 @@ import SearchBar from "./components/searchBar";
import Greeter from "./components/greeter";
import AppList from "./components/appList";
import BookmarkList from "./components/bookmarkList";
import SettingsModal from "./components/settingsModal";
import Settings from "./components/settings";
import selectedTheme from "./components/themeManager";
import Imprint from "./components/imprint";
const GlobalStyle = createGlobalStyle`
body {
background-color: ${selectedTheme.backgroundColor};
@ -32,10 +34,11 @@ const App = () => (
<GlobalStyle />
<AppContainer>
<SearchBar />
<SettingsModal />
<Settings />
<Greeter />
<AppList />
<BookmarkList />
<Imprint />
</AppContainer>
</>
);