Skip to content

Commit dc433b7

Browse files
authored
Merge pull request #2697 from XRPLF/new-events-7/25/24-2
adds xrpl builder office hours event to events and community page
2 parents 9444421 + f4274e1 commit dc433b7

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed

community/events.page.tsx

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ const zone = require("../static/img/events/XRPLZone.png")
1010
const calls = require("../static/img/events/CommunityCalls.png")
1111
const brazil = require("../static/img/events/event-meetup-brazil.png")
1212
const korea = require("../static/img/events/SouthKoreaMeetup.png")
13+
const infoSession = require("../static/img/events/InfoSessions.png");
1314
export const frontmatter = {
1415
seo: {
1516
title: "Events",
@@ -466,7 +467,7 @@ const events = [
466467
link: "https://www.youtube.com/watch?v=TgLaAXTZY7Q",
467468
location: "Virtual - Zoom",
468469
date: "September 05, 2023",
469-
image: require("../static/img/events/InfoSessions.png"),
470+
image: infoSession,
470471
end_date: "September 05, 2023",
471472
},
472473
{
@@ -488,7 +489,7 @@ const events = [
488489
link: "https://www.youtube.com/watch?v=BbGu0QC5WEE",
489490
location: "Virtual - Zoom",
490491
date: "September 06, 2023",
491-
image: require("../static/img/events/InfoSessions.png"),
492+
image: infoSession,
492493
end_date: "September 06, 2023",
493494
},
494495
{
@@ -750,6 +751,17 @@ const events = [
750751
image: korea,
751752
end_date: "September 4, 2024",
752753
},
754+
{
755+
name: "XRPL Builder Office Hours",
756+
description:
757+
"XRPL Builder Office Hours is an open forum hosted monthly by Developer Advocates to answer technical and business questions from community members.",
758+
type: "info-session",
759+
link: "https://ripple.zoom.us/meeting/register/tJMscOCsrDoiHNUN6hZLpFVR69OcfG9rXtIA#/registration",
760+
location: "Virtual - Zoom",
761+
date: "August 23, 2024",
762+
image: infoSession,
763+
end_date: "August 23, 2024",
764+
},
753765
];
754766

755767
export default function Events() {

community/index.page.tsx

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import { useThemeHooks } from "@redocly/theme/core/hooks";
33
import moment from "moment";
44
import { Link } from "@redocly/theme/components/Link/Link";
55

6+
const infoSession = require("../static/img/events/InfoSessions.png");
7+
68
export const frontmatter = {
79
seo: {
810
title: "Community",
@@ -67,7 +69,7 @@ const events = [
6769
link: "https://www.youtube.com/watch?v=BbGu0QC5WEE",
6870
location: "Virtual - Zoom",
6971
date: "September 06, 2023",
70-
image: require("../static/img/events/InfoSessions.png"),
72+
image: infoSession,
7173
end_date: "September 06, 2023",
7274
start_date: "September 06, 2023",
7375
},
@@ -203,6 +205,18 @@ const events = [
203205
start_date: "September 4, 2024",
204206
end_date: "September 4, 2024",
205207
},
208+
{
209+
name: "XRPL Builder Office Hours",
210+
description:
211+
"XRPL Builder Office Hours is an open forum hosted monthly by Developer Advocates to answer technical and business questions from community members.",
212+
type: "info-session",
213+
link: "https://ripple.zoom.us/meeting/register/tJMscOCsrDoiHNUN6hZLpFVR69OcfG9rXtIA#/registration",
214+
location: "Virtual - Zoom",
215+
date: "August 23, 2024",
216+
image: infoSession,
217+
start_date: "August 23, 2024",
218+
end_date: "August 23, 2024",
219+
},
206220
];
207221
const { nearestDateDiff, nearestEvent } = findNearestUpcomingEvent(events);
208222
const XrplEventsAndCarouselSection = ({ events }) => {

0 commit comments

Comments
 (0)