File tree Expand file tree Collapse file tree 2 files changed +85
-0
lines changed
src/app/manage/[slug]/(dashboard) Expand file tree Collapse file tree 2 files changed +85
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import MembershipForms from './(forms)/MembershipForms';
1111import Officers from './(forms)/Officers' ;
1212import Slug from './(forms)/Slug' ;
1313import NotApproved from './NotApproved' ;
14+ import Resources from './Resources' ;
1415
1516const ClubManageForm = async ( {
1617 club,
@@ -62,6 +63,7 @@ const ClubManageForm = async ({
6263 role = { role }
6364 userId = { session ?. user . id as string }
6465 />
66+ < Resources />
6567 { role === 'President' && < DeleteClub view = "manage" club = { club } /> }
6668 </ div >
6769 ) ;
Original file line number Diff line number Diff line change 1+ import Link from 'next/link' ;
2+ import Panel from '@src/components/common/Panel' ;
3+
4+ const Resources = ( ) => {
5+ return (
6+ < Panel heading = "Resources" >
7+ < div className = "flex flex-col gap-2 px-2" >
8+ < ul className = "prose prose-slate dark:prose-invert prose-a:text-royal dark:prose-a:text-cornflower-300 prose-sm md:prose-base" >
9+ < li >
10+ Support
11+ < ul >
12+ < li >
13+ < Link href = "https://discord.utdnebula.com/" target = "_blank" >
14+ Nebula Labs Discord
15+ </ Link >
16+ </ li >
17+ < li >
18+ < Link
19+ href = "https://www.instagram.com/utdnebula/"
20+ target = "_blank"
21+ >
22+ Nebula Labs Instagram
23+ </ Link >
24+ </ li >
25+ </ ul >
26+ </ li >
27+ < li >
28+ Marketing, Funding, and the Student Organization Manual
29+ < ul >
30+ < li >
31+ < Link href = "https://soc.utdallas.edu/" target = "_blank" >
32+ Student Organization Center (SOC)
33+ </ Link >
34+ </ li >
35+ < li >
36+ < Link
37+ href = "https://engineering.utdallas.edu/engage/students/student-organization/"
38+ target = "_blank"
39+ >
40+ Jonsson School Student Organizations
41+ </ Link >
42+ </ li >
43+ < li >
44+ < Link href = "https://signage.utdallas.edu/" target = "_blank" >
45+ Digital Signage
46+ </ Link >
47+ </ li >
48+ </ ul >
49+ </ li >
50+ < li >
51+ Room Booking
52+ < ul >
53+ < li >
54+ < Link
55+ href = "https://www.aaiscloud.com/UTXDallas/logon.aspx?ReturnUrl=%2futxdallas%2fcalendars%2fdailygridcalendar.aspx"
56+ target = "_blank"
57+ >
58+ Astra
59+ </ Link >
60+ </ li >
61+ < li >
62+ < Link
63+ href = "https://east.mymazevo.com/main-home"
64+ target = "_blank"
65+ >
66+ Mazevo
67+ </ Link >
68+ </ li >
69+ < li >
70+ < Link href = "https://rooms.utdnebula.com/" target = "_blank" >
71+ UTD Rooms
72+ </ Link >
73+ : If you missed the deadline to book through the above
74+ </ li >
75+ </ ul >
76+ </ li >
77+ </ ul >
78+ </ div >
79+ </ Panel >
80+ ) ;
81+ } ;
82+
83+ export default Resources ;
You can’t perform that action at this time.
0 commit comments