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

jeffreyh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git


The following commit(s) were added to refs/heads/master by this push:
     new b0da680cac1 feat:add Vendors page (#2546)
b0da680cac1 is described below

commit b0da680cac1802d194f31339c400499ef34fe256
Author: yangon <[email protected]>
AuthorDate: Mon Jun 23 15:29:33 2025 +0800

    feat:add Vendors page (#2546)
    
    
![image](https://github.com/user-attachments/assets/23f853fc-3ece-4e6b-aa96-cda7ec742d5f)
---
 docusaurus.config.js                 | 10 ++++++
 src/components/Icons/velodb-logo.tsx | 32 ++++++++++++++++++
 src/pages/vendors/index.tsx          | 65 ++++++++++++++++++++++++++++++++++++
 src/scss/components/navbar.scss      |  2 +-
 4 files changed, 108 insertions(+), 1 deletion(-)

diff --git a/docusaurus.config.js b/docusaurus.config.js
index 298164f6dc7..2a5c97085f2 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -257,6 +257,11 @@ const config = {
                         to: '/community/join-community',
                         position: 'left',
                     },
+                    {
+                        label: 'Vendors',
+                        to: '/vendors',
+                        position: 'left',
+                    },
                     // {
                     //     type: 'search',
                     //     position: 'right',
@@ -375,6 +380,11 @@ const config = {
                         to: '/community/join-community',
                         position: 'left',
                     },
+                    {
+                        label: 'Vendors',
+                        to: '/vendors',
+                        position: 'left',
+                    },
                     {
                         href: '/download',
                         className: 'header-right-button-primary 
navbar-download-mobile',
diff --git a/src/components/Icons/velodb-logo.tsx 
b/src/components/Icons/velodb-logo.tsx
new file mode 100644
index 00000000000..294452689c5
--- /dev/null
+++ b/src/components/Icons/velodb-logo.tsx
@@ -0,0 +1,32 @@
+export function VelodbLogo(props:any) {
+    return (
+        <svg {...props} xmlns="http://www.w3.org/2000/svg"; width="110" 
height="36" viewBox="0 0 110 36" fill="none">
+            <path
+                fill-rule="evenodd"
+                clip-rule="evenodd"
+                d="M53.3077 16.8462C53.3077 11.9606 57.2682 8 62.1538 
8C67.0395 8 71 11.9606 71 16.8462V19.1538C71 24.0394 67.0395 28 62.1538 
28C57.2682 28 53.3077 24.0394 53.3077 19.1538V16.8462ZM67.1539 
16.8462V19.1538C67.1539 21.9153 64.9153 24.1538 62.1538 24.1538C59.3924 24.1538 
57.1538 21.9153 57.1538 19.1538V16.8462C57.1538 14.0847 59.3924 11.8462 62.1538 
11.8462C64.9153 11.8462 67.1539 14.0847 67.1539 16.8462Z"
+                fill="black"
+            />
+            <path
+                d="M4.84615 8.38462H1L7.15385 27.6154H11L17.1538 
8.38462H13.3077L9.07692 21.6058L4.84615 8.38462Z"
+                fill="black"
+            />
+            <path d="M41.7692 
8.38462H37.9231V27.6154H51.7692V23.7692H41.7692V8.38462Z" fill="black" />
+            <path
+                fill-rule="evenodd"
+                clip-rule="evenodd"
+                d="M74.0769 8.38462V27.6154H81.3846C86.2702 27.6154 90.2308 
23.6548 90.2308 18.7692V17.2308C90.2308 12.3452 86.2702 8.38462 81.3846 
8.38462H74.0769ZM81.3846 12.2308H77.9231V23.7692H81.3846C84.146 23.7692 86.3846 
21.5307 86.3846 18.7692V17.2308C86.3846 14.4693 84.146 12.2308 81.3846 12.2308Z"
+                fill="black"
+            />
+            <path
+                fill-rule="evenodd"
+                clip-rule="evenodd"
+                d="M93.3077 27.7115H103.795C106.925 27.7115 109.462 25.1747 
109.462 22.0453C109.462 20.327 108.698 18.7924 107.497 17.755C108.475 16.7503 
109.077 15.3782 109.077 13.8654C109.077 10.7853 106.58 8.28846 103.5 
8.28846H93.3077V27.7115ZM105.231 13.6731V14.0577C105.231 15.1198 104.37 15.9808 
103.308 15.9808H97.1539V11.75H103.308C104.37 11.75 105.231 12.611 105.231 
13.6731ZM97.1539 19.4423H103.5C104.668 19.4423 105.615 20.3894 105.615 
21.5577V21.9423C105.615 21.9602 105.615 21.9 [...]
+                fill="black"
+            />
+            <path d="M33.8848 8.57666V12.0382H20.4233V8.57666H33.8848Z" 
fill="#0BA2FF" />
+            <path d="M33.3079 19.5382V16.0767H21.0002V19.5382H33.3079Z" 
fill="#0BA2FF" />
+            <path d="M34.0771 23.769V27.6151H20.231V23.769H34.0771Z" 
fill="#0BA2FF" />
+        </svg>
+    );
+}
diff --git a/src/pages/vendors/index.tsx b/src/pages/vendors/index.tsx
new file mode 100644
index 00000000000..bded49874e4
--- /dev/null
+++ b/src/pages/vendors/index.tsx
@@ -0,0 +1,65 @@
+import Layout from '../../theme/Layout';
+import { VelodbLogo } from '../../components/Icons/velodb-logo';
+import Link from '@docusaurus/Link';
+
+export default function Vendors() {
+    return (
+        <Layout
+            title="Vendors - Apache Doris"
+            description="This page contains some of the vendors who support 
Apache Doris in their products."
+        >
+            <section className="bg-[#F7F9FE] px-4 lg:px-0 py-[6rem]">
+                <div className="max-w-[1180px] mx-auto text-center">
+                    <div className="text-[#1D1D1D] text-[2.75rem]/[2.5rem] 
mb-4 font-semibold tracking-[0.88px]">
+                        Vendors
+                    </div>
+                    <p className="text-[#000] text-[1.25rem]/[2rem]">
+                        This page contains some of the vendors who are 
supporting Apache Doris in their products
+                    </p>
+                </div>
+            </section>
+            <section className="max-w-[960px] px-4 lg:px-0 mx-auto my-8 
lg:my-[5.5rem]">
+                <div className="lg:flex gap-x-[5rem] py-[2.5rem]">
+                    <VelodbLogo className="shrink-0" />
+                    <div className="text-[1rem]/[180%] text-[#1D1D1D]">
+                        <p className="mb-4">
+                            <Link className="underline text-[#444FD9] 
font-medium" to="https://www.velodb.io";>
+                                VeloDB
+                            </Link>{' '}
+                            is the leading managed service for Apache Doris, 
offering fast, cost-effective,
+                            enterprise-grade capabilities for real-time 
analytics use cases in today's AI-driven world.
+                            It provides both cloud service and on-premise 
deployment.{' '}
+                            <Link className="underline text-[#444FD9] 
font-medium" to="https://www.velodb.io/cloud";>
+                                VeloDB Cloud
+                            </Link>{' '}
+                            is a fully managed, cloud-native service available 
on AWS, Azure, GCP, along with SaaS and
+                            BYOC models.{' '}
+                            <Link
+                                className="underline text-[#444FD9] 
font-medium"
+                                to="https://www.velodb.io/enterprise";
+                            >
+                                VeloDB Enterprise
+                            </Link>{' '}
+                            is self-managed software ideal for on-premises, 
VM, or Kubernetes setups. It includes a
+                            dependable Enterprise Core based on Apache Doris 
and an all-in-one database cluster
+                            management tool, the Enterprise Manager. Learn 
more about how to leverage Apache Doris
+                            capabilities{' '}
+                            <Link
+                                className="underline text-[#444FD9] 
font-medium"
+                                to="https://www.velodb.io/get-started";
+                            >
+                                here
+                            </Link>
+                            .
+                        </p>
+                        <p>
+                            Founded by Apache Doris' core members, VeloDB is 
dedicated to community growth through
+                            technical contributions and support, and stands 
out as a leading contributor in code commits
+                            and community development.
+                        </p>
+                    </div>
+                </div>
+            </section>
+        </Layout>
+    );
+}
diff --git a/src/scss/components/navbar.scss b/src/scss/components/navbar.scss
index 50cef2aba64..6b965a954b6 100644
--- a/src/scss/components/navbar.scss
+++ b/src/scss/components/navbar.scss
@@ -41,7 +41,7 @@
         }
     }
     &__inner {
-        padding: 0 5rem;
+        padding: 0 1.5rem;
         margin: 0 auto;
 
         @media screen and (max-width: 1366px) {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to