Skip to content

Commit 058cbd4

Browse files
author
Adelino Ngomacha
committed
feat: add team page
1 parent d036cc6 commit 058cbd4

File tree

2 files changed

+87
-0
lines changed

2 files changed

+87
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
<script setup lang="ts">
2+
3+
</script>
4+
5+
<template>
6+
<div class="bg-white">
7+
<div class="mx-auto max-w-7xl px-6 lg:px-8">
8+
<ul role="list" class="mx-auto mt-20 grid max-w-2xl grid-cols-2 gap-x-8 gap-y-16 text-center sm:grid-cols-3 md:grid-cols-4 lg:mx-0 lg:max-w-none lg:grid-cols-5 xl:grid-cols-6">
9+
<li>
10+
<img class="mx-auto h-24 w-24 rounded-full" src="https://pbs.twimg.com/profile_images/1707883193054228480/n98q6t1L_400x400.jpg" alt="">
11+
<h3 class="mt-6 text-base font-semibold leading-7 tracking-tight text-gray-900">
12+
Chris
13+
</h3>
14+
<p class="text-sm leading-6 text-gray-600">
15+
chris@stacksjs.org
16+
</p>
17+
</li>
18+
19+
<li>
20+
<img class="mx-auto h-24 w-24 rounded-full" src="https://pbs.twimg.com/profile_images/1707883193054228480/n98q6t1L_400x400.jpg" alt="">
21+
<h3 class="mt-6 text-base font-semibold leading-7 tracking-tight text-gray-900">
22+
Blake
23+
</h3>
24+
<p class="text-sm leading-6 text-gray-600">
25+
blake@stacksjs.org
26+
</p>
27+
</li>
28+
29+
<li>
30+
<img class="mx-auto h-24 w-24 rounded-full" src="https://pbs.twimg.com/profile_images/1707883193054228480/n98q6t1L_400x400.jpg" alt="">
31+
<h3 class="mt-6 text-base font-semibold leading-7 tracking-tight text-gray-900">
32+
Zoltan
33+
</h3>
34+
<p class="text-sm leading-6 text-gray-600">
35+
zoltan@stacksjs.org
36+
</p>
37+
</li>
38+
39+
<li>
40+
<img class="mx-auto h-24 w-24 rounded-full" src="https://pbs.twimg.com/profile_images/1707883193054228480/n98q6t1L_400x400.jpg" alt="">
41+
<h3 class="mt-6 text-base font-semibold leading-7 tracking-tight text-gray-900">
42+
Freddy
43+
</h3>
44+
<p class="text-sm leading-6 text-gray-600">
45+
freddy@stacksjs.org
46+
</p>
47+
</li>
48+
49+
<li>
50+
<img class="mx-auto h-24 w-24 rounded-full" src="https://pbs.twimg.com/profile_images/1707883193054228480/n98q6t1L_400x400.jpg" alt="">
51+
<h3 class="mt-6 text-base font-semibold leading-7 tracking-tight text-gray-900">
52+
Glenn
53+
</h3>
54+
<p class="text-sm leading-6 text-gray-600">
55+
glenn@stacksjs.org
56+
</p>
57+
</li>
58+
59+
<li>
60+
<img class="mx-auto h-24 w-24 rounded-full" src="https://pbs.twimg.com/profile_images/1707883193054228480/n98q6t1L_400x400.jpg" alt="">
61+
<h3 class="mt-6 text-base font-semibold leading-7 tracking-tight text-gray-900">
62+
Dorell
63+
</h3>
64+
<p class="text-sm leading-6 text-gray-600">
65+
dorell@stacksjs.org
66+
</p>
67+
</li>
68+
69+
<li>
70+
<img class="mx-auto h-24 w-24 rounded-full" src="https://pbs.twimg.com/profile_images/1707883193054228480/n98q6t1L_400x400.jpg" alt="">
71+
<h3 class="mt-6 text-base font-semibold leading-7 tracking-tight text-gray-900">
72+
Avery
73+
</h3>
74+
<p class="text-sm leading-6 text-gray-600">
75+
avery@stacksjs.org
76+
</p>
77+
</li>
78+
</ul>
79+
</div>
80+
</div>
81+
</template>
82+
83+
<style scoped>
84+
85+
</style>

libs/components/Dashboard/Settings/SettingsFormManager.vue

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import SearchEngineForm from './Forms/SearchEngineForm.vue'
1616
import SecurityForm from './Forms/SecurityForm.vue'
1717
import ServicesForm from './Forms/ServicesForm.vue'
1818
import StorageForm from './Forms/StorageForm.vue'
19+
import TeamsForm from './Forms/TeamsForm.vue'
1920
2021
const props = defineProps({
2122
name: String,
@@ -142,6 +143,7 @@ const pageTitle = computed < String > (() => options.find(option => option.key =
142143
<template v-else-if="name === 'security'"><SecurityForm /></template>
143144
<template v-else-if="name === 'services'"><ServicesForm /></template>
144145
<template v-else-if="name === 'storage'"><StorageForm /></template>
146+
<template v-else-if="name === 'team'"><TeamsForm /></template>
145147
<template v-else>
146148
<div class="text-center">
147149
<div class="i-heroicons-cog-8-tooth text-gray-400 w-12 h-12 dark:text-gray-200 transition-all duration-150 ease-in-out" />

0 commit comments

Comments
 (0)