diff --git a/content/data/agenda.tsx b/content/data/agenda.tsx index c3634c5..b2e11b9 100644 --- a/content/data/agenda.tsx +++ b/content/data/agenda.tsx @@ -1,3 +1,67 @@ import type { AgendaEntry } from "@/components/AgendaItem"; -export const Agenda:AgendaEntry[] = [] \ No newline at end of file +export const Agenda:AgendaEntry[] = [ + { + time: "9:00 EDT", + type: "single", + content: [{title: "Doors open", speaker: ""}] + }, + { + time: "10:00 - 10:15 EDT", + type: "single", + content: [{title: "Opening remarks", speaker: "Sergi Delgado"}] + }, + { + time: "10:15 - 11:20 EDT", + type: "multi", + content: [ + {title: "QCAP: A Bitcoin-Native Quantum Canary Alert", speaker: "Ghazaleh Keshavarzkalhori"}, + {title: "Iceberg: Nested Signing for Lightning", speaker: "Jesse Posner"}, + {title: "Native SNARK verification on Bitcoin", speaker: "Robin Linus"} + ] + }, + { + time: "11:20 - 11:40 EDT", + type: "single", + content: [{title: "Coffee Break", speaker: ""}] + }, + { + time: "11:40 - 12:30 EDT", + type: "single", + content: [{title: "Group Session", speaker: ""}] + }, + { + time: "12:30 - 13:30 EDT", + type: "single", + content: [{title: "Lunch Break", speaker: ""}] + }, + { + time: "13:30 - 14:35 EDT", + type: "multi", + content: [ + {title: "State of the Ark", speaker: "Steven Rose"}, + {title: "Shielded Bitcoin: Private Bitcoin Transactions via PIPEs v2", speaker: "Misha Komarov"}, + {title: "Isoge-what? (An introduction to Isogeny-based PQ cryptography)", speaker: "Nadav Kohen"} + ] + }, + { + time: "14:35 - 14:55 EDT", + type: "single", + content: [{title: "Coffee Break", speaker: ""}] + }, + { + time: "14:55 - 15:55 EDT", + type: "single", + content: [{title: "Bitcoin Research Prize Talk: TBD", speaker: "TBD"}] + }, + { + time: "15:55 - 16:05 EDT", + type: "single", + content: [{title: "Closing Remarks", speaker: "Sergi Delgado"}] + }, + { + time: "16:05 - 18:00 CET EDT", + type: "single", + content: [{title: "Happy Hour", speaker: ""}] + } +] \ No newline at end of file diff --git a/content/data/speakers.tsx b/content/data/speakers.tsx index 63f1855..c5a22a7 100644 --- a/content/data/speakers.tsx +++ b/content/data/speakers.tsx @@ -7,4 +7,53 @@ type Speaker = { link?: string; } -export const Speakers:Speaker[] = [] \ No newline at end of file +export const Speakers:Speaker[] = [ + { + name: "Ghazaleh Keshavarzkalhori", + // title: "PhD candidate", + organization: "Autonomous University of Barcelona", + imgSrc: "/speakers/ghazaleh-keshavarzkalhori.webp", + imgSrc2x: "/speakers/ghazaleh-keshavarzkalhori@2x.webp", + link: "https://x.com/0xgazelle" + }, { + name: "Jesse Posner", + // title: "CEO", + organization: "Vora", + imgSrc: "/speakers/jesse-posner.webp", + imgSrc2x: "/speakers/jesse-posner.webp", + link: "https://x.com/jesseposner" + }, + { + name: "Robin Linus", + // title: "PhD candidate", + organization: "Stanford University", + imgSrc: "/speakers/robin-linus.webp", + imgSrc2x: "/speakers/robin-linus@2x.webp", + link: "https://x.com/robin_linus" + }, + { + name: "Steven Roose", + // title: "CEO", + organization: "Second", + imgSrc: "/speakers/steven-roose.webp", + imgSrc2x: "/speakers/steven-roose@2x.webp", + link: "https://x.com/stevenroose3" + }, + { + name: "Misha Komarov", + // title: "Co-founder", + organization: "[[alloc] init]", + imgSrc: "/speakers/misha-komarov.webp", + imgSrc2x: "/speakers/misha-komarov@2x.webp", + link: "https://x.com/nemothenoone" + }, + { + name: "Nadav Kohen", + // title: "Researcher", + organization: "2140", + imgSrc: "/speakers/nadav-kohen.webp", + imgSrc2x: "/speakers/nadav-kohen@2x.webp", + link: "https://x.com/nadav_kohen" + }, + // Prize winner TBD +] \ No newline at end of file diff --git a/public/speakers/ghazaleh-keshavarzkalhori.webp b/public/speakers/ghazaleh-keshavarzkalhori.webp new file mode 100644 index 0000000..0f1f21d Binary files /dev/null and b/public/speakers/ghazaleh-keshavarzkalhori.webp differ diff --git a/public/speakers/ghazaleh-keshavarzkalhori@2x.webp b/public/speakers/ghazaleh-keshavarzkalhori@2x.webp new file mode 100644 index 0000000..50e926e Binary files /dev/null and b/public/speakers/ghazaleh-keshavarzkalhori@2x.webp differ diff --git a/public/speakers/jesse-posner.webp b/public/speakers/jesse-posner.webp index fffb731..ce51f4b 100644 Binary files a/public/speakers/jesse-posner.webp and b/public/speakers/jesse-posner.webp differ diff --git a/public/speakers/jesse-posner@2x.webp b/public/speakers/jesse-posner@2x.webp new file mode 100644 index 0000000..cb205ef Binary files /dev/null and b/public/speakers/jesse-posner@2x.webp differ diff --git a/public/speakers/misha-komarov.webp b/public/speakers/misha-komarov.webp new file mode 100644 index 0000000..c2123e6 Binary files /dev/null and b/public/speakers/misha-komarov.webp differ diff --git a/public/speakers/misha-komarov@2x.webp b/public/speakers/misha-komarov@2x.webp new file mode 100644 index 0000000..1a2b99a Binary files /dev/null and b/public/speakers/misha-komarov@2x.webp differ diff --git a/public/speakers/nadav-kohen.webp b/public/speakers/nadav-kohen.webp new file mode 100644 index 0000000..ac2caa4 Binary files /dev/null and b/public/speakers/nadav-kohen.webp differ diff --git a/public/speakers/nadav-kohen@2x.webp b/public/speakers/nadav-kohen@2x.webp new file mode 100644 index 0000000..2108f1f Binary files /dev/null and b/public/speakers/nadav-kohen@2x.webp differ diff --git a/public/speakers/robin-linus.webp b/public/speakers/robin-linus.webp new file mode 100644 index 0000000..621ddf4 Binary files /dev/null and b/public/speakers/robin-linus.webp differ diff --git a/public/speakers/robin-linus@2x.webp b/public/speakers/robin-linus@2x.webp new file mode 100644 index 0000000..a7c7705 Binary files /dev/null and b/public/speakers/robin-linus@2x.webp differ diff --git a/public/speakers/steven-roose.webp b/public/speakers/steven-roose.webp new file mode 100644 index 0000000..cc7b09d Binary files /dev/null and b/public/speakers/steven-roose.webp differ diff --git a/public/speakers/steven-roose@2x.webp b/public/speakers/steven-roose@2x.webp new file mode 100644 index 0000000..5651767 Binary files /dev/null and b/public/speakers/steven-roose@2x.webp differ