adds 2 new events

This commit is contained in:
akcodez
2024-09-17 09:54:05 -07:00
parent 301c19a6c0
commit 1ec813f0a5
3 changed files with 47 additions and 1 deletions

View File

@@ -897,6 +897,28 @@ const events = [
image: require('../static/img/events/mag-meetup.png'),
end_date: "October 9, 2024",
},
{
name: "San Francisco XRP Ledger Meet Up",
description:
"Hello San Francisco XRP Ledger community! We're hosting a meetup soon with a focus on ZK research. Excited to see you soon!",
type: "meetup",
link: "https://lu.ma/evdklm4r",
location: "San Fransisco, California",
date: "September 26, 2024",
image: require('../static/img/events/sf-meetup.jpg'),
end_date: "September 26, 2024",
},
{
name: "AI Fund - XRPL Grants Info Session",
description:
"Join our info session to learn about our new XRPL Grants' AI Fund, designed to support innovative projects that leverage artificial intelligence in the XRPL ecosystem.",
type: "info",
link: "https://ripple.zoom.us/webinar/register/WN__SNDW7LTSM29h5NIpvXFvg#/registration",
location: "Virtual - Zoom",
date: "October 2, 2024",
image: infoSession,
end_date: "October 2, 2024",
},
];

View File

@@ -269,6 +269,18 @@ const events = [
start_date: "September 12, 2024",
end_date: "September 12, 2024",
},
{
name: "San Francisco XRP Ledger Meet Up",
description:
"Hello San Francisco XRP Ledger community! We're hosting a meetup soon with a focus on ZK research. Excited to see you soon!",
type: "meetup",
link: "https://lu.ma/evdklm4r",
location: "San Fransisco, California",
date: "September 26, 2024",
image: require('../static/img/events/sf-meetup.jpg'),
start_date: "September 26, 2024",
end_date: "September 26, 2024",
},
{
name: "XRPL Builder Office Hours",
description:
@@ -281,6 +293,18 @@ const events = [
start_date: "September 27, 2024",
end_date: "September 27, 2024",
},
{
name: "AI Fund - XRPL Grants Info Session",
description:
"Join our info session to learn about our new XRPL Grants' AI Fund, designed to support innovative projects that leverage artificial intelligence in the XRPL ecosystem.",
type: "info",
link: "https://ripple.zoom.us/webinar/register/WN__SNDW7LTSM29h5NIpvXFvg#/registration",
location: "Virtual - Zoom",
date: "October 2, 2024",
image: infoSession,
start_date: "October 2, 2024",
end_date: "October 2, 2024",
},
{
name: "XRPL Builder Office Hours",
description:
@@ -304,7 +328,7 @@ const events = [
image: infoSession4,
start_date: "November 22, 2024",
end_date: "November 22, 2024",
},
}
];
const { nearestDateDiff, nearestEvent, index } = findNearestUpcomingEvent(events);
const XrplEventsAndCarouselSection = ({ events }) => {