-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPointsSystem.tsx
More file actions
58 lines (46 loc) · 2.81 KB
/
PointsSystem.tsx
File metadata and controls
58 lines (46 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import { Helmet } from "react-helmet-async";
import ReactMarkdown from "react-markdown";
import remarkGfm from "remark-gfm";
const markdownContent = `# Distinguished Members Program
The **Distinguished Members Program** is designed to incentivize active involvement through a structured framework of rewards and recognitions. This program aims to enhance the overall club experience while offering tangible benefits to our members.
# Objectives
1. **Increase Active Participation:** Encourage consistent attendance at meetings, workshops, and club events.
2. **Enhance Member Skills:** Motivate members to engage deeply with technical content and collaborative projects.
3. **Build Community:** Strengthen the sense of belonging and teamwork within the club.
4. **Recognize Contributions:** Acknowledge and reward the efforts and achievements of our members.
# Perks and Rewards
Members can earn points through various activities such as attending meetings, participating in discussions, contributing to projects, and more. These points lead to numerous benefits, including:
- **Priority Opportunities:** Access to limited-space events and seats on SoDA Team Trip to Sponsor's Office (more details to come as the semester progresses).
- **Professional Advancement:** Enhanced visibility in our Resume Book and potential recommendation letters.
- **Exclusive Access:** Voting rights on future workshop topics and direct interactions with industry professionals.
- **Alumni Banquet:** Invitation to Alumni Banquet at the end of the semester/year. (more details coming out soon)
## Point System Breakdown
Earn points through different event types. Here’s the updated breakdown:
| **Event Type** | **Value (in Points)** |
| --- | --- |
| GBM | 10 |
| Collaboration (with other clubs) | 15 |
| Hackathon/Bootcamp | 20 |
| Lounge Hour | 15 |
`;
export default function PointsSystem() {
return (
<div className="max-w-5xl mx-auto p-6 my-28 shadow-md rounded-lg">
{/* Helmet for SEO */}
<Helmet>
<title>Distinguished Members Program</title>
<meta
name="description"
content="Explore ASU Soda's Distinguished Members Program, designed to reward active members with perks, career growth, and exclusive opportunities."
/>
<meta
name="keywords"
content="Distinguished Members Program, ASU Soda, Points System, Active Participation, Member Rewards, Member Perks, Member Benefits, computer science, CS, software development"
/>
</Helmet>
<div className="prose lg:prose-xl prose-invert prose-th:border prose-td:border prose-th:border-neutral-300 prose-td:border-neutral-300 prose-th:p-2 prose-td:p-2">
<ReactMarkdown children={markdownContent} remarkPlugins={[remarkGfm]} />
</div>
</div> // Add the missing closing tag for the main container div
);
}