diff --git a/packages/ui/src/KeynoteSpeakerSection.tsx b/packages/ui/src/KeynoteSpeakerSection.tsx
index 8e897258..51085dad 100644
--- a/packages/ui/src/KeynoteSpeakerSection.tsx
+++ b/packages/ui/src/KeynoteSpeakerSection.tsx
@@ -14,12 +14,16 @@ export default function Keynote(): React.ReactNode {
header: "Sue Harnett",
bio: "CEO of Rewriting the Code",
text: "Sue Harnett is the Founder & CEO of Rewriting the Code, the nonprofit she launched in 2017 that has grown into a global community of 38,000+ university and early-career women in tech, offering mentorship, education, and career-readiness programs. She will be speaking about women in technology, and the value of community, teamwork, and thoughtful leadership!",
+ location: "Zone A",
+ time: "Friday, 1pm",
};
const jessicaData = {
header: "Jessica Cao",
bio: "Stanford CS '26 / Founder of World37",
text: "Jessica Cao is an undergraduate studying Computer Science at Stanford University, and the founder of World37, an AI-powered storytelling platform where players can engage with, create, and share their own unique stories. She will be speaking about the art of pitching a technical project!",
+ location: "Zone A",
+ time: "Friday, 1pm",
};
return (
@@ -66,6 +70,9 @@ export default function Keynote(): React.ReactNode {
header={sueData.header}
bio={sueData.bio}
text={sueData.text}
+ isLive={false}
+ location={sueData.location}
+ time={sueData.time}
/>
@@ -94,6 +101,9 @@ export default function Keynote(): React.ReactNode {
header={jessicaData.header}
bio={jessicaData.bio}
text={jessicaData.text}
+ isLive={false}
+ location={jessicaData.location}
+ time={jessicaData.time}
/>
diff --git a/packages/ui/src/LocationIcon.tsx b/packages/ui/src/LocationIcon.tsx
new file mode 100644
index 00000000..0e19b606
--- /dev/null
+++ b/packages/ui/src/LocationIcon.tsx
@@ -0,0 +1,64 @@
+import * as React from "react";
+const LocationIcon = () => (
+
+);
+export default LocationIcon;
diff --git a/packages/ui/src/TimeIcon.tsx b/packages/ui/src/TimeIcon.tsx
new file mode 100644
index 00000000..a0343ad5
--- /dev/null
+++ b/packages/ui/src/TimeIcon.tsx
@@ -0,0 +1,64 @@
+import * as React from "react";
+const TimeIcon = () => (
+
+);
+export default TimeIcon;