Add placeholder admin dashboard

This commit is contained in:
april
2024-01-11 15:06:40 -06:00
parent 37a452ac08
commit fbc1df5f34
3 changed files with 39 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
import { Container, Group, Title } from "@mantine/core";
export default function Admin() {
return (
<>
<Container>
<Group justify="space-between" align="center" grow my="lg">
<Title order={2}>Admin</Title>
</Group>
</Container>
</>
);
}