Skip to content

Commit

Permalink
add zoom link
Browse files Browse the repository at this point in the history
  • Loading branch information
Weile-Zheng committed Jan 11, 2025
1 parent 9422c31 commit 8240260
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
7 changes: 6 additions & 1 deletion components/timeline.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ export default function Timeline({ events }) {
{event.time}
</time>
<h3 className="text-lg font-semibold text-white snap-center">
{event.title}
{event.title}{" "}
{event.zoom && (
<Link href={event.zoom} className="font-bold underline">
Zoom
</Link>
)}
</h3>
<p className="mb-4 text-base font-normal text-white">
{event.description}
Expand Down
6 changes: 5 additions & 1 deletion config/links.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,9 @@
"name": "Calendar",
"href": "https://calendar.google.com/calendar/u/0?cid=Y18yMmNhMGMxNTE1ODU3NjA0NDJjYWQ1Nzk2ZmI5MWJkMThiN2RiMTFkODEzZTkxNDNlMzg1NDlhYWRjZTY1YWZlQGdyb3VwLmNhbGVuZGFyLmdvb2dsZS5jb20",
"icon_name": "calendar"
},
{
"name": "Zoom",
"href": "https://umich.zoom.us/j/96762839103"
}
]
]
5 changes: 3 additions & 2 deletions config/timeline.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"title": "Recruiting Timeline Fall 2024",
"events": [
{
"title": "Mass Meeting 1 @ Virtual ",
"title": "Mass Meeting 1 @ Virtual",
"time": "January 12th 12:00 - 1:00pm",
"description": "Join us to learn more about MDST and how to become a member."
"description": "Join us to learn more about MDST and how to become a member.",
"zoom": "https://umich.zoom.us/j/96762839103"
},
{
"title": "Mass Meeting 2 @ Michigan Union - Kuenzel Room",
Expand Down

0 comments on commit 8240260

Please sign in to comment.