Skip to content

Commit 19d4e6f

Browse files
author
Asha Padma
committed
added nick m's seminar and added an event tag for seminar
1 parent 46c4260 commit 19d4e6f

3 files changed

Lines changed: 17 additions & 4 deletions

File tree

src/pages/EventsData.ts

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export const events: ScheduleEvent[] = [ // PLACEHOLDERS: Update all event times
8383
description: "The check-in table will be available from 9am-1pm to accomadate attendees arriving in Rochester on Saturday. Stop by at any time to pick up your badge, swag bag, and event materials. Ask questions about the weekend's events and chat with CSHers.",
8484
date: "Saturday, April 11, 2026",
8585
time: "9:00 AM - 1:00 PM",
86-
location: "TBD", // PLACEHOLDER: Confirm location
86+
location: "TBD",
8787
address: "TBD",
8888
capacity: "All attendees",
8989
dressCode: "Casual",
@@ -203,19 +203,31 @@ export const events: ScheduleEvent[] = [ // PLACEHOLDERS: Update all event times
203203
description: "CSHers will be showing off their mechnical keyboard setups! Stop by to check it out and spend some time learning about keyboards. There will be special guests and giveaways!",
204204
date: "Friday, April 10, 2026",
205205
time: "12:30 PM - 2:00 PM",
206-
location: "Douglass Sprague Perry Hall (DSP) Room 1250", // Confirm location
206+
location: "Douglass Sprague Perry Hall (DSP) Room 1250",
207207
address: "43 Greenleaf Ct, Rochester, NY 14623",
208208
capacity: "All attendees",
209209
dressCode: "Casual",
210210
type: "activity",
211211
},
212+
{
213+
id: 20,
214+
title: "Seminar: Intro to GPUI and hacking on Zed",
215+
description: "Hosted by CSH's very own Nick Moshe (@nickm)! Learn how Zed.dev works under the hood, how to use its rust-native desktop app framework GPUI, and how to build custom plugins embedded into Zed itself.",
216+
date: "Friday, April 10, 2026",
217+
time: "12:30 PM - 2:00 PM",
218+
location: "CSH, DSP Floor 3",
219+
address: "43 Greenleaf Ct, Rochester, NY 14623",
220+
capacity: "All attendees",
221+
dressCode: "Casual",
222+
type: "seminar",
223+
},
212224
{
213225
id: 17,
214226
title: "IGM Symposium",
215227
description: "https://www.rit.edu/computing/school-interactive-games-and-media/ims",
216228
date: "Saturday, April 11, 2026",
217229
time: "10:00 AM - 5:00 PM",
218-
location: "RIT's MAGIC Spell Studios", // Confirm location
230+
location: "RIT's MAGIC Spell Studios",
219231
address: "1 Lomb Memorial Dr, Rochester, NY",
220232
capacity: "",
221233
dressCode: "",

src/pages/Schedule.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ export const typeColors: Record<string, string> = {
6262
main: "bg-gradient-csh text-primary-foreground",
6363
food: "bg-amber-500/70 text-amber-200 border-amber-500/30",
6464
activity: "bg-emerald-500/70 text-emerald-200 border-emerald-500/30",
65+
seminar: "bg-purple-500/70 text-purple-200 border-purple-500/30",
6566
external: "bg-orange-500/70 text-orange-200 border-orange-500/30"
6667
};
6768

src/pages/ScheduleEvent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ export interface ScheduleEvent {
1111
address: string,
1212
capacity: string,
1313
dressCode: string,
14-
type: "social" | "main" | "food" | "activity" | "external"
14+
type: "social" | "main" | "food" | "activity" | "seminar" | "external"
1515
}

0 commit comments

Comments
 (0)