You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by ti...@apache.org on 2023/05/24 17:27:57 UTC

[pulsar-site] branch main updated: After Pulsar Virtual Summit Europe 2023 (#585)

This is an automated email from the ASF dual-hosted git repository.

tison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 6b1bba71b2b After Pulsar Virtual Summit Europe 2023 (#585)
6b1bba71b2b is described below

commit 6b1bba71b2b83443ee80ea736aacd50ff8d993d7
Author: Kiryl Valkovich <vi...@gmail.com>
AuthorDate: Wed May 24 20:27:51 2023 +0300

    After Pulsar Virtual Summit Europe 2023 (#585)
    
    * Pulsar Virtual Summit Europe 2023 is over. Remove announcement.
    
    * Add Pulsar Summit Europe 2023 to event list
    
    * Change featured event text
---
 data/events.ts                                       |  7 +++++++
 docusaurus.config.js                                 | 20 ++++++++++----------
 .../pages/EventsPage/FeaturedEvent/FeaturedEvent.tsx | 15 ++++++++++-----
 3 files changed, 27 insertions(+), 15 deletions(-)

diff --git a/data/events.ts b/data/events.ts
index da473f6460d..fc8c6889c73 100644
--- a/data/events.ts
+++ b/data/events.ts
@@ -22,6 +22,13 @@ export type Resource = {
 
 export const resources: Record<Category, Resource[]> = {
     events: [
+      {
+        title: 'Pulsar Summit Europe 2023',
+        description: '',
+        link: 'https://pulsar-summit.org/event/europe-2023',
+        displayDate: '23 May 2023',
+        startDate: '2023-05-23' // year-month-day
+      },
       {
         title: 'Pulsar Summit San Francisco 2022',
         description: '',
diff --git a/docusaurus.config.js b/docusaurus.config.js
index a8ac3c605aa..72a895cbf13 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -142,16 +142,16 @@ module.exports = {
   trailingSlash: true,
   themeConfig: {
     /** @type {import('@docusaurus/preset-classic').ThemeConfig} */
-    announcementBar: {
-      id: "summit",
-      content: renderAnnouncementBar(
-        "Pulsar Virtual Summit Europe 2023",
-        "https://pulsar-summit.org/event/europe-2023"
-      ),
-      backgroundColor: "#282826",
-      textColor: "#fff",
-      isCloseable: false,
-    },
+    // announcementBar: {
+    //   id: "summit",
+    //   content: renderAnnouncementBar(
+    //     "Pulsar Virtual Summit Europe 2023",
+    //     "https://pulsar-summit.org/event/europe-2023"
+    //   ),
+    //   backgroundColor: "#282826",
+    //   textColor: "#fff",
+    //   isCloseable: false,
+    // },
     colorMode: {
       disableSwitch: true,
     },
diff --git a/src/components/pages/EventsPage/FeaturedEvent/FeaturedEvent.tsx b/src/components/pages/EventsPage/FeaturedEvent/FeaturedEvent.tsx
index 649c54cec1c..e546513b007 100644
--- a/src/components/pages/EventsPage/FeaturedEvent/FeaturedEvent.tsx
+++ b/src/components/pages/EventsPage/FeaturedEvent/FeaturedEvent.tsx
@@ -11,13 +11,18 @@ const FeaturedEvent: React.FC = () => {
 
   return (
     <div className={s.FeaturedEvent}>
-      <div>Featured event</div>
-      <h2>Pulsar Virtual Summit Europe 2023</h2>
-      <p>Pulsar Virtual Summit Europe 2023 will take place on Tuesday, May 23rd, 2023! Don't miss this free one-day event!</p>
+      {/* <div>Featured event</div> */}
+      <h2>Pulsar Summit</h2>
+      <p>
+        Pulsar Summit is the conference for Apache Pulsar and event processing communities that takes place multiple times a year.
+      </p>
+      <p>
+        This summit provides a diverse platform to explore, learn and exchange ideas. From captivating keynotes to insightful panel discussions, hands-on workshops, and unparalleled networking opportunities.
+      </p>
       <a
-        href="https://events.zoom.us/ev/Ap6rsDg9LeVfmdajJ_eB13HH026J1d_o8OoTKkQnl_jzVl-srhwB~AggLXsr32QYFjq8BlYLZ5I06Dg"
+        href="https://pulsar-summit.org/"
         target='_blank'
-      >Register</a>
+      >Learn more</a>
     </div>
   );
 }