Skip to content

Commit

Permalink
feat(dash/admin): ✨ Bot Message Page
Browse files Browse the repository at this point in the history
  • Loading branch information
Nudelsuppe42 committed Feb 12, 2025
1 parent 67fa613 commit 3effbc8
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
15 changes: 15 additions & 0 deletions apps/dashboard/src/app/am/bot/msg/loading.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { Box, Group, Title } from '@mantine/core';

import { Protection } from '@/components/Protection';

export default function Page() {
return (
<Protection requiredRole="get-claims">
<Box mx="md" maw="90vw">
<Group justify="space-between" w="100%" mt="xl" mb="md">
<Title order={1}>Send Message</Title>
</Group>
</Box>
</Protection>
);
}
15 changes: 15 additions & 0 deletions apps/dashboard/src/app/am/bot/msg/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { Box, Group, Title } from '@mantine/core';

import { Protection } from '@/components/Protection';

export default async function Page({}: {}) {
return (
<Protection requiredRole="get-claims">
<Box mx="md" maw="90vw">
<Group justify="space-between" w="100%" mt="xl" mb="md">
<Title order={1}>Send Message</Title>
</Group>
</Box>
</Protection>
);
}

0 comments on commit 3effbc8

Please sign in to comment.