Add support for imprints
This commit is contained in:
parent
5656d91845
commit
a8f2136736
8 changed files with 358 additions and 60 deletions
|
@ -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>
|
||||
</>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue