Skip to content

Commit b087616

Browse files
authored
Merge pull request #655 from UTDNebula/resources-panel
Resources panel
2 parents d2b5c45 + 6403529 commit b087616

File tree

2 files changed

+85
-0
lines changed

2 files changed

+85
-0
lines changed

src/app/manage/[slug]/(dashboard)/ClubManageForm.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import MembershipForms from './(forms)/MembershipForms';
1111
import Officers from './(forms)/Officers';
1212
import Slug from './(forms)/Slug';
1313
import NotApproved from './NotApproved';
14+
import Resources from './Resources';
1415

1516
const 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
);
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
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;

0 commit comments

Comments
 (0)