Rework appshell and include calendar to the main page

This commit is contained in:
Thomas "ajnart" Camlong
2022-05-02 18:10:56 +02:00
parent 8c1dce68b7
commit 71d18a5aa6
6 changed files with 142 additions and 124 deletions

View File

@@ -1,5 +1,6 @@
import { Notification } from '@mantine/core';
import { Group, Notification } from '@mantine/core';
import AppShelf from '../components/AppShelf/AppShelf';
import CalendarComponent from '../components/calendar/CalendarComponent';
import LoadConfigComponent from '../components/Config/LoadConfig';
import SearchBar from '../components/SearchBar/SearchBar';
@@ -7,7 +8,10 @@ export default function HomePage() {
return (
<>
<SearchBar />
<AppShelf />
<Group align={"start"} position="apart" noWrap>
<AppShelf />
<CalendarComponent />
</Group>
<LoadConfigComponent />
</>
);