Skip to content

Commit 9590bf5

Browse files
committed
(fix) update absence form for project fair
1 parent 8240260 commit 9590bf5

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

components/timeline.jsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@ export default function Timeline({ events }) {
1111
</time>
1212
<h3 className="text-lg font-semibold text-white snap-center">
1313
{event.title}{" "}
14-
{event.zoom && (
15-
<Link href={event.zoom} className="font-bold underline">
16-
Zoom
14+
{event.external && (
15+
<Link
16+
href={event.external.link}
17+
className="font-bold underline"
18+
>
19+
{event.external.name}
1720
</Link>
1821
)}
1922
</h3>

config/timeline.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
"title": "Mass Meeting 1 @ Virtual",
77
"time": "January 12th 12:00 - 1:00pm",
88
"description": "Join us to learn more about MDST and how to become a member.",
9-
"zoom": "https://umich.zoom.us/j/96762839103"
9+
"external": {
10+
"name": "Zoom",
11+
"link": "https://umich.zoom.us/j/96762839103"
12+
}
1013
},
1114
{
1215
"title": "Mass Meeting 2 @ Michigan Union - Kuenzel Room",
@@ -21,7 +24,11 @@
2124
{
2225
"title": "*Mandatory* Project Exploration Fair @ CCCB 3460",
2326
"time": "January 19th 12:00 - 3:00pm",
24-
"description": "Meet with project leads and get to know the project offerings for this semester. Please block out ~30 minutes within this timeframe to attend. If you have a conflict, let us know BEFORE the event, no exceptions will be made if you let us know after 11:59 a.m. on 01/19."
27+
"description": "Meet with project leads and get to know the project offerings for this semester. Please block out ~30 minutes within this timeframe to attend. If you have a conflict, fill out the form above BEFORE the event, no exceptions will be made if you let us know after 11:59 a.m. on 01/19.",
28+
"external": {
29+
"name": "Form",
30+
"link": "https://docs.google.com/forms/d/e/1FAIpQLSdew7sqXO_r2bXIIDhaPj6GhROBJzy1htaP0BIr5xykeIvpZQ/viewform?usp=dialog"
31+
}
2532
},
2633
{
2734
"title": "Office Hours 2 @ Mason Hall 3356",

0 commit comments

Comments
 (0)