From f4274e1a3dee0f8a3e127399b826f8e592c05a83 Mon Sep 17 00:00:00 2001 From: akcodez Date: Thu, 25 Jul 2024 09:50:31 -0700 Subject: [PATCH] adds xrpl builder office hours --- community/events.page.tsx | 16 ++++++++++++++-- community/index.page.tsx | 16 +++++++++++++++- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/community/events.page.tsx b/community/events.page.tsx index 9e986dacc4..37f631d790 100644 --- a/community/events.page.tsx +++ b/community/events.page.tsx @@ -10,6 +10,7 @@ const zone = require("../static/img/events/XRPLZone.png") const calls = require("../static/img/events/CommunityCalls.png") const brazil = require("../static/img/events/event-meetup-brazil.png") const korea = require("../static/img/events/SouthKoreaMeetup.png") +const infoSession = require("../static/img/events/InfoSessions.png"); export const frontmatter = { seo: { title: "Events", @@ -466,7 +467,7 @@ const events = [ link: "https://www.youtube.com/watch?v=TgLaAXTZY7Q", location: "Virtual - Zoom", date: "September 05, 2023", - image: require("../static/img/events/InfoSessions.png"), + image: infoSession, end_date: "September 05, 2023", }, { @@ -488,7 +489,7 @@ const events = [ link: "https://www.youtube.com/watch?v=BbGu0QC5WEE", location: "Virtual - Zoom", date: "September 06, 2023", - image: require("../static/img/events/InfoSessions.png"), + image: infoSession, end_date: "September 06, 2023", }, { @@ -750,6 +751,17 @@ const events = [ image: korea, end_date: "September 4, 2024", }, + { + name: "XRPL Builder Office Hours", + description: + "XRPL Builder Office Hours is an open forum hosted monthly by Developer Advocates to answer technical and business questions from community members.", + type: "info-session", + link: "https://ripple.zoom.us/meeting/register/tJMscOCsrDoiHNUN6hZLpFVR69OcfG9rXtIA#/registration", + location: "Virtual - Zoom", + date: "August 23, 2024", + image: infoSession, + end_date: "August 23, 2024", + }, ]; export default function Events() { diff --git a/community/index.page.tsx b/community/index.page.tsx index 274274bfbe..a4cb3f5307 100644 --- a/community/index.page.tsx +++ b/community/index.page.tsx @@ -3,6 +3,8 @@ import { useThemeHooks } from "@redocly/theme/core/hooks"; import moment from "moment"; import { Link } from "@redocly/theme/components/Link/Link"; +const infoSession = require("../static/img/events/InfoSessions.png"); + export const frontmatter = { seo: { title: "Community", @@ -67,7 +69,7 @@ const events = [ link: "https://www.youtube.com/watch?v=BbGu0QC5WEE", location: "Virtual - Zoom", date: "September 06, 2023", - image: require("../static/img/events/InfoSessions.png"), + image: infoSession, end_date: "September 06, 2023", start_date: "September 06, 2023", }, @@ -203,6 +205,18 @@ const events = [ start_date: "September 4, 2024", end_date: "September 4, 2024", }, + { + name: "XRPL Builder Office Hours", + description: + "XRPL Builder Office Hours is an open forum hosted monthly by Developer Advocates to answer technical and business questions from community members.", + type: "info-session", + link: "https://ripple.zoom.us/meeting/register/tJMscOCsrDoiHNUN6hZLpFVR69OcfG9rXtIA#/registration", + location: "Virtual - Zoom", + date: "August 23, 2024", + image: infoSession, + start_date: "August 23, 2024", + end_date: "August 23, 2024", + }, ]; const { nearestDateDiff, nearestEvent } = findNearestUpcomingEvent(events); const XrplEventsAndCarouselSection = ({ events }) => {