From 2bcc5046b614fb71e715668a7ba82306602cc5de Mon Sep 17 00:00:00 2001 From: cedoor Date: Thu, 9 Nov 2023 16:03:02 +0000 Subject: [PATCH 1/2] chore(website): update events.json --- apps/website/src/data/events.json | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/apps/website/src/data/events.json b/apps/website/src/data/events.json index d9f590b11..723631b83 100644 --- a/apps/website/src/data/events.json +++ b/apps/website/src/data/events.json @@ -1,17 +1,14 @@ [ { - "name": "ETH Rome", - "date": "Oct 06-07, 2023", - "description": "Semaphore team will attend Progcrypto and deliver workshops on how to build applications with Semaphore." - }, - { - "name": "Devconnect", + "name": "Devconnect - ProgCrypto", "date": "Nov 16-17, 2023", - "description": "Semaphore team will attend Progcrypto and deliver workshops on how to build applications with Semaphore." + "description": "Semaphore team will deliver a workshop on how to build applications with Semaphore.", + "link": "https://progcrypto.org" }, { - "name": "Devcon", - "date": "Nov 16-17, 2024", - "description": "Semaphore team will attend Progcrypto and deliver workshops on how to build applications with Semaphore." + "name": "Devconnect - Zero Knowledge Unleashed", + "date": "Nov 14, 2023", + "description": "Semaphore team will deliver a workshop on how to build zero-knowledge applications.", + "link": "https://lu.ma/tpgzkday_devconnect" } ] From 55e8eef27f94ddb6655d01e4c652169da64dfeaf Mon Sep 17 00:00:00 2001 From: cedoor Date: Thu, 9 Nov 2023 16:12:13 +0000 Subject: [PATCH 2/2] refactor(website): add links to events --- apps/website/src/app/page.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/apps/website/src/app/page.tsx b/apps/website/src/app/page.tsx index 8b3c5b3c1..cec03674c 100644 --- a/apps/website/src/app/page.tsx +++ b/apps/website/src/app/page.tsx @@ -224,12 +224,14 @@ export default function Home() { {events.map((event) => ( - - - {event.date} | {event.name} - - {event.description} - + + + + {event.date} | {event.name} + + {event.description} + + ))}