| 12345678910111213141516171819 |
- <template>
- <div class="page">
- <div class="page-header">
- <h1>Users</h1>
- <p>Manage organization users</p>
- </div>
- <div class="content">
- <p>Users list will be here...</p>
- </div>
- </div>
- </template>
- <style scoped>
- .page { padding: 32px; }
- .page-header { margin-bottom: 32px; }
- .page-header h1 { font-size: 32px; font-weight: 700; color: #1a202c; margin-bottom: 8px; }
- .page-header p { color: #718096; font-size: 16px; }
- .content { background: white; border-radius: 12px; padding: 24px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
- </style>
|