2022-05-02 18:10:56 +02:00
|
|
|
import { Group, Notification } from '@mantine/core';
|
2022-04-25 00:11:32 +02:00
|
|
|
import AppShelf from '../components/AppShelf/AppShelf';
|
2022-05-02 18:10:56 +02:00
|
|
|
import CalendarComponent from '../components/calendar/CalendarComponent';
|
2022-04-27 03:12:53 +02:00
|
|
|
import LoadConfigComponent from '../components/Config/LoadConfig';
|
2022-04-27 23:19:02 +02:00
|
|
|
import SearchBar from '../components/SearchBar/SearchBar';
|
2022-04-24 22:36:47 +02:00
|
|
|
|
|
|
|
|
export default function HomePage() {
|
|
|
|
|
return (
|
|
|
|
|
<>
|
2022-04-27 23:19:02 +02:00
|
|
|
<SearchBar />
|
2022-05-03 19:52:09 +02:00
|
|
|
<Group align={'start'} position="apart" noWrap>
|
2022-05-02 18:10:56 +02:00
|
|
|
<AppShelf />
|
|
|
|
|
<CalendarComponent />
|
|
|
|
|
</Group>
|
2022-04-27 23:19:02 +02:00
|
|
|
<LoadConfigComponent />
|
2022-04-24 22:36:47 +02:00
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|