other non build page

This commit is contained in:
grimhilt 2023-07-30 19:16:12 +02:00
parent 8c12f47d5d
commit 35de39fef8
2 changed files with 25 additions and 0 deletions

15
src/pages/home/index.jsx Normal file
View File

@ -0,0 +1,15 @@
import Logo from '../../assets/logo.png';
import { Avatar, Center, Text } from '@mantine/core';
const Home = () => (
<>
<Center mt="xl" mb="md">
<Avatar src={Logo} size={300} />
</Center>
<Text align="center" fw={500} fz="xl">
Configure playlist to display on remote display(s) !
</Text>
</>
);
export default Home;

View File

@ -0,0 +1,10 @@
import Logo from '../../assets/logo.png';
import { Avatar, Center, Text } from '@mantine/core';
const Planning = () => (
<>
planning
</>
);
export default Planning;