Skip to content

Commit

Permalink
1,603rd Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Shyam-Chen committed Dec 25, 2024
1 parent 898e442 commit 63c535d
Show file tree
Hide file tree
Showing 14 changed files with 503 additions and 314 deletions.
10 changes: 9 additions & 1 deletion app/src/layouts/baseline/links-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,15 @@ const links = [
name: 'CRUD Operations',
to: '/crud-operations',
},
{ icon: 'i-mdi-user-group', name: 'Management', to: '/users' },
{
icon: 'i-mdi-user-group',
name: 'Management',
sub: [
{ name: 'Organizations', to: '/management/organizations' },
{ name: 'Groups', to: '/management/groups' },
{ name: 'Users', to: '/management/users' },
],
},
{ icon: 'i-carbon-two-factor-authentication', name: 'Two-factor Auth', to: '/two-factor-auth' },
{ icon: 'i-ph-chats-fill', name: 'Discussions', to: '/discussions' },
{ icon: 'i-material-symbols-robot-2-outline', name: 'Chatbot', to: '/chatbot' },
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<script lang="ts" setup>
import { XBreadcrumb } from '@x/ui';
</script>

<template>
<XBreadcrumb :items="[{ text: 'Management' }, { text: 'Groups' }]" />

<h1 class="text-4xl font-extrabold my-4">Groups</h1>
</template>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<script lang="ts" setup>
import { XBreadcrumb } from '@x/ui';
</script>

<template>
<XBreadcrumb :items="[{ text: 'Management' }, { text: 'Organizations' }]" />

<h1 class="text-4xl font-extrabold my-4">Organizations</h1>
</template>
Loading

0 comments on commit 63c535d

Please sign in to comment.