Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function App() {
<Route element={<MainLayout />}>
<Route path="/" element={<Home />} />
<Route path="/mentorship" element={<Mentorship />} />
<Route path="/sodapop" element={<PointsSystem />} />
<Route path="/distinguishedMembers" element={<PointsSystem />} />
<Route path="/leaderboard" element={<Leaderboard />} />
<Route path="/apply" element={<Positions />} />
<Route path="*" element={<NotFound />} />
Expand Down
6 changes: 3 additions & 3 deletions src/components/Blog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ export default function Blog() {
<IndividualBlog
imageURL="/winner-winner-chicken-dinner.webp"
tag={["mentorship", "community development"]}
title="Soda Pop (Distinguished Members Program)"
title="Distinguished Members Program"
summary="SoDA introduced points system designed to encourage active participation in our community. By attending meetings, events, and engaging in various activities, members can earn points that contribute to their standing within the organization. These points can be redeemed for exclusive rewards, recognition, and opportunities, fostering a vibrant and involved community."
link="/sodapop"
alt="Soda Pop (Distinguished Members Program)"
link="/distinguishedMembers"
alt="Distinguished Members Program"
width={5510}
height={2904}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer/RightFooterGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type ResourceLink =

const resources: ResourceLink[] = [
{ name: "Mentorship Program", source: "/mentorship" },
{ name: "SoDA PoP Program", source: "/sodapop" },
{ name: "Distinguished Members Program", source: "/distinguishedMembers" },
{ name: "Officer Applications", source: "/apply" },
{ name: "Leaderboard", source: "/leaderboard" },
{
Expand Down
7 changes: 3 additions & 4 deletions src/pages/PointsSystem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ import { Helmet } from "react-helmet-async";
import ReactMarkdown from "react-markdown";
import remarkGfm from "remark-gfm";

const markdownContent = `# SoDA pop Program
### (fka Distinguished Members Program)
const markdownContent = `# Distinguished Members Program

The **SoDA PoP 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.
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

Expand Down Expand Up @@ -44,7 +43,7 @@ export default function PointsSystem() {
<div className="max-w-5xl mx-auto p-6 my-28 shadow-md rounded-lg">
{/* Helmet for SEO */}
<Helmet>
<title>SoDA PoP</title>
<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."
Expand Down
Loading