Skip to content

Commit

Permalink
Added infosession to mentors page
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Lee committed Dec 11, 2023
1 parent 88110b1 commit 9879221
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/labels/MentorLabels.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,19 @@ export const SUBTITLE =
"computer science courses as a Junior Mentor.";

export const SECTIONS = {
INFOSESSION: {
LABEL: "Infosession",
BODY_JSX: (
<span>
<p className="info">
Infosession Slides: <a href="https://tinyurl.com/csm-infosession-sp24">https://tinyurl.com/csm-infosession-sp24</a>
</p>
<p className="info">
Infosession Recording (12/08/2023): <a href="https://tinyurl.com/csm-infosession-sp24-recording">https://tinyurl.com/csm-infosession-sp24-recording</a>
</p>
</span>
)
},
RESPONSIBILITIES: {
LABEL: "Responsibilities",
BODY_JSX: (
Expand Down
8 changes: 8 additions & 0 deletions src/pages/Mentors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ export default class Mentors extends React.Component {
</section>

<div className="container">
<div className="section">
<div className="col l8 offset-l2 s10 offset-s1">
<h5 className="label">
{Labels.SECTIONS.INFOSESSION.LABEL}
</h5>
{Labels.SECTIONS.INFOSESSION.BODY_JSX}
</div>
</div>
<div className="section">
<div className="col l8 offset-l2 s10 offset-s1">
<h5 className="label">
Expand Down

0 comments on commit 9879221

Please sign in to comment.