|
1 | 1 | import Modal from "../Modal"; |
2 | 2 | import { useEffect, useState } from "react"; |
3 | 3 |
|
| 4 | +const bpweek_events: Record<string, string> = { |
| 5 | + "Feb 26, 7:00pm": "Assistive Tech", |
| 6 | + "Feb 27, 7:00pm": "Motorsports", |
| 7 | + "Feb 27, 8:00pm": "Team Formation", |
| 8 | + "Feb 27, 9:00pm": "MITIT", |
| 9 | + "Feb 28, 7:00pm": "Battlecode", |
| 10 | + "Feb 28, 8:00pm": "Intro to Git", |
| 11 | + "Feb 28, 9:00pm": "Intro to Figma", |
| 12 | +}; |
| 13 | + |
4 | 14 | const learnathon_events: Record<string, string> = { |
5 | 15 | "8:30am": "Check-in & breakfast", |
6 | 16 | "9:30am": "Opening", |
@@ -74,13 +84,15 @@ const Schedule = () => { |
74 | 84 | {isMobile && ( |
75 | 85 | <h1 className="text-7xl font-bold mt-5 mb-3">Schedule</h1> |
76 | 86 | )} |
77 | | - {/* <div className="text-4xl font-bold mt-3 mb-3">BP Week</div> |
78 | | - {bpweek_events.map(([date, event], index) => ( |
79 | | - <div key={index} className="flex flex-row space-x-4"> |
80 | | - <div className="w-1/2">{event}</div> |
81 | | - <div className="w-1/2 text-right">{date}</div> |
82 | | - </div> |
83 | | - ))} */} |
| 87 | + <h2 className="text-4xl font-bold mb-3"> |
| 88 | + BLUEPRINT WEEK [2/26-2/28] |
| 89 | + </h2> |
| 90 | + {Object.entries(bpweek_events).map(([time, event], index) => ( |
| 91 | + <div key={index} className="flex flex-row space-x-4"> |
| 92 | + <div className="w-1/2">{event}</div> |
| 93 | + <div className="w-1/2 text-right">{time}</div> |
| 94 | + </div> |
| 95 | + ))} |
84 | 96 | <h2 className="text-4xl font-bold mb-3">LEARNATHON [3/1]</h2> |
85 | 97 | {Object.entries(learnathon_events).map(([time, event], index) => ( |
86 | 98 | <div key={index} className="flex flex-row space-x-4"> |
|
0 commit comments