Skip to content

Commit

Permalink
Update Schedule.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
iancheung0202 authored Dec 11, 2024
1 parent aa0fb0f commit 3fe3006
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/app/(landing)/Schedule.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function Schedule() {
<ScheduleItem start="1:30 PM">Doors Open</ScheduleItem>
<ScheduleItem start="2:00 PM" end="2:30 PM">Opening Ceremony</ScheduleItem>
<ScheduleItem start="2:30 PM" end="3:00 PM">Team Formation</ScheduleItem>
<ScheduleItem start="3:00 PM" bold>Hacking Begins</ScheduleItem>
<ScheduleItem start="3:00 PM" bold className="highlight-row">Hacking Begins</ScheduleItem>
<ScheduleItem start="3:15 PM" end="4:45 PM">Intro to Code / Web Development Workshop</ScheduleItem>
<ScheduleItem start="5:00 PM" end="6:30 PM">Basic AI and ML / Game Dev in Python Workshop</ScheduleItem>
<ScheduleItem start="6:30 PM">Dinner</ScheduleItem>
Expand All @@ -22,14 +22,19 @@ export default function Schedule() {
<ScheduleItem start="8:00 AM">Breakfast</ScheduleItem>
<ScheduleItem start="10:00 AM" end="10:30 AM">Programming-themed Skribbl.io</ScheduleItem>
<ScheduleItem start="12:00 PM">Lunch</ScheduleItem>
<ScheduleItem start="3:00 PM" bold>Hacking Ends</ScheduleItem>
<ScheduleItem start="3:00 PM" bold className="highlight-row">Hacking Ends</ScheduleItem>
<ScheduleItem start="3:00 PM" end="5:00 PM">Presentations & Demos (Judging)</ScheduleItem>
<ScheduleItem start="4:00 PM" end="4:45 PM">Code Golf</ScheduleItem>
<ScheduleItem start="5:00 PM" end="5:30 PM">Awards & Closing Ceremony</ScheduleItem>
<ScheduleItem start="5:30 PM" end="6:00 PM">Awards Distribution</ScheduleItem>
<ScheduleItem start="6:00 PM" end="6:30 PM">Cleanup & Doors Close</ScheduleItem>
</ScheduleDay>
</div>
<style jsx global>{`
.highlight-row {
background-color: rgba(244, 119, 34, 0.3); /* #F47722 with opacity */
}
`}</style>
</Section>
);
}
Expand Down

0 comments on commit 3fe3006

Please sign in to comment.