This is an automated email from the ASF dual-hosted git repository.
morningman 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 99fb8b32e74 feat: add Doris brand assets page (#3978)
99fb8b32e74 is described below
commit 99fb8b32e74aa8f5b85bad9f10651b21cd5f367c
Author: Mingyu Chen (Rayner) <[email protected]>
AuthorDate: Sun Jul 12 23:18:29 2026 +0800
feat: add Doris brand assets page (#3978)
## Summary
- Add a new Brand Assets page for official Apache Doris SVG logo assets.
- Add 12 SVG assets under static/images/brand-assets with URL-friendly
names.
- Add a Brand Assets link under the Resources footer section.
## Test Plan
- [x] Verified all asset file names referenced by the page exist under
static/images/brand-assets.
- [x] Ran git diff --check on the changed files.
- [ ] Full build not run in this session; user will compile locally.
---
docusaurus.config.js | 4 +
src/pages/brand-assets/index.scss | 205 +++++++++++++++++++++
src/pages/brand-assets/index.tsx | 148 +++++++++++++++
.../apache-doris-logo-horizontal-dark.svg | 37 ++++
.../apache-doris-logo-horizontal-primary.svg | 37 ++++
.../apache-doris-logo-horizontal-white.svg | 33 ++++
.../apache-doris-logo-stacked-dark.svg | 37 ++++
.../apache-doris-logo-stacked-primary.svg | 37 ++++
.../apache-doris-logo-stacked-white.svg | 33 ++++
.../brand-assets/doris-logo-horizontal-dark.svg | 23 +++
.../brand-assets/doris-logo-horizontal-primary.svg | 23 +++
.../brand-assets/doris-logo-horizontal-white.svg | 19 ++
.../brand-assets/doris-logo-stacked-dark.svg | 23 +++
.../brand-assets/doris-logo-stacked-primary.svg | 23 +++
.../brand-assets/doris-logo-stacked-white.svg | 19 ++
15 files changed, 701 insertions(+)
diff --git a/docusaurus.config.js b/docusaurus.config.js
index 2a29308f75b..dc68610c43c 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -444,6 +444,10 @@ const config = {
label: 'Download',
href: '/download',
},
+ {
+ label: 'Brand Assets',
+ href: '/brand-assets',
+ },
// {
// label: 'Docs',
// href: '/docs/get-starting/quick-start',
diff --git a/src/pages/brand-assets/index.scss
b/src/pages/brand-assets/index.scss
new file mode 100644
index 00000000000..a779e8a048d
--- /dev/null
+++ b/src/pages/brand-assets/index.scss
@@ -0,0 +1,205 @@
+.brand-assets {
+ background: #ffffff;
+ color: #1d1d1d;
+
+ &__hero {
+ background: #f7fafc;
+ padding: 6rem 0 5rem;
+ text-align: center;
+
+ h1 {
+ margin: 0;
+ color: #1d1d1d;
+ font-size: 2.75rem;
+ font-weight: 600;
+ line-height: 1.1;
+ }
+ }
+
+ &__eyebrow {
+ margin: 0 0 0.75rem;
+ color: var(--ifm-color-primary);
+ font-size: 0.875rem;
+ font-weight: 600;
+ text-transform: uppercase;
+ }
+
+ &__intro {
+ max-width: 48rem;
+ margin: 1.25rem auto 0;
+ color: #4b5563;
+ font-size: 1.125rem;
+ line-height: 1.8;
+ }
+
+ &__content {
+ padding: 4.5rem 0 6rem;
+ }
+
+ &__notice {
+ margin-bottom: 2rem;
+ padding: 1rem 1.25rem;
+ border: 1px solid #d9eee8;
+ border-radius: 6px;
+ background: #f4fbf8;
+ color: #344054;
+ font-size: 0.9375rem;
+ line-height: 1.7;
+ }
+
+ &__grid {
+ display: grid;
+ grid-template-columns: repeat(3, minmax(0, 1fr));
+ gap: 1.5rem;
+ }
+
+ &__card {
+ display: flex;
+ min-width: 0;
+ flex-direction: column;
+ overflow: hidden;
+ border: 1px solid #e5e7eb;
+ border-radius: 8px;
+ background: #ffffff;
+ box-shadow: 0 10px 28px rgba(33, 39, 116, 0.06);
+ }
+
+ &__preview {
+ display: flex;
+ min-height: 13.5rem;
+ align-items: center;
+ justify-content: center;
+ padding: 2rem;
+ border-bottom: 1px solid #e5e7eb;
+
+ img {
+ display: block;
+ width: 100%;
+ max-width: 15rem;
+ max-height: 8rem;
+ object-fit: contain;
+ }
+
+ &--light {
+ background:
+ linear-gradient(45deg, #f2f5f8 25%, transparent 25%),
+ linear-gradient(-45deg, #f2f5f8 25%, transparent 25%),
+ linear-gradient(45deg, transparent 75%, #f2f5f8 75%),
+ linear-gradient(-45deg, transparent 75%, #f2f5f8 75%),
+ #ffffff;
+ background-position:
+ 0 0,
+ 0 0.75rem,
+ 0.75rem -0.75rem,
+ -0.75rem 0;
+ background-size: 1.5rem 1.5rem;
+ }
+
+ &--dark {
+ border-bottom-color: #24352f;
+ background: #0c1613;
+ }
+ }
+
+ &__card-body {
+ display: flex;
+ flex: 1;
+ flex-direction: column;
+ justify-content: space-between;
+ padding: 1.25rem;
+
+ h2 {
+ margin: 0;
+ color: #1d1d1d;
+ font-size: 1.125rem;
+ font-weight: 600;
+ line-height: 1.4;
+ }
+
+ p {
+ margin: 0.5rem 0 0;
+ color: #667085;
+ font-size: 0.9375rem;
+ line-height: 1.6;
+ }
+ }
+
+ &__card-footer {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ gap: 1rem;
+ margin-top: 1.25rem;
+
+ span {
+ color: #667085;
+ font-size: 0.75rem;
+ font-weight: 600;
+ }
+
+ a {
+ display: inline-flex;
+ min-height: 2.25rem;
+ align-items: center;
+ justify-content: center;
+ padding: 0.5rem 0.875rem;
+ border-radius: 4px;
+ background: var(--ifm-color-primary);
+ color: #ffffff;
+ font-size: 0.875rem;
+ font-weight: 500;
+ line-height: 1.2;
+ transition:
+ opacity 0.2s,
+ box-shadow 0.2s;
+
+ &:hover {
+ color: #ffffff;
+ opacity: 0.9;
+ text-decoration: none;
+ box-shadow: 0 6px 12px rgba(161, 167, 210, 0.35);
+ }
+ }
+ }
+
+ @media screen and (max-width: 996px) {
+ &__hero {
+ padding: 4.5rem 0 3.75rem;
+
+ h1 {
+ font-size: 2.25rem;
+ }
+ }
+
+ &__content {
+ padding: 3rem 0 4rem;
+ }
+
+ &__grid {
+ grid-template-columns: repeat(2, minmax(0, 1fr));
+ }
+ }
+
+ @media screen and (max-width: 640px) {
+ &__hero {
+ padding: 3.5rem 0 3rem;
+
+ h1 {
+ font-size: 2rem;
+ }
+ }
+
+ &__intro {
+ font-size: 1rem;
+ }
+
+ &__grid {
+ grid-template-columns: 1fr;
+ }
+
+ &__preview {
+ min-height: 11rem;
+ padding: 1.5rem;
+ }
+ }
+}
diff --git a/src/pages/brand-assets/index.tsx b/src/pages/brand-assets/index.tsx
new file mode 100644
index 00000000000..eacc3929c22
--- /dev/null
+++ b/src/pages/brand-assets/index.tsx
@@ -0,0 +1,148 @@
+import React from 'react';
+import Layout from '../../theme/Layout';
+import './index.scss';
+
+type PreviewTheme = 'light' | 'dark';
+
+interface BrandAsset {
+ name: string;
+ description: string;
+ fileName: string;
+ previewTheme: PreviewTheme;
+}
+
+const ASSET_BASE_PATH = '/images/brand-assets';
+
+const brandAssets: BrandAsset[] = [
+ {
+ name: 'Doris Logo - Horizontal',
+ description: 'Primary Doris logo for light backgrounds.',
+ fileName: 'doris-logo-horizontal-primary.svg',
+ previewTheme: 'light',
+ },
+ {
+ name: 'Doris Logo - Stacked',
+ description: 'Centered Doris logo for light backgrounds.',
+ fileName: 'doris-logo-stacked-primary.svg',
+ previewTheme: 'light',
+ },
+ {
+ name: 'Doris Logo - Horizontal Dark',
+ description: 'Doris logo with white wordmark for dark backgrounds.',
+ fileName: 'doris-logo-horizontal-dark.svg',
+ previewTheme: 'dark',
+ },
+ {
+ name: 'Doris Logo - Stacked Dark',
+ description: 'Centered Doris logo with white wordmark for dark
backgrounds.',
+ fileName: 'doris-logo-stacked-dark.svg',
+ previewTheme: 'dark',
+ },
+ {
+ name: 'Doris Logo - Horizontal White',
+ description: 'Single-color Doris logo for dark backgrounds.',
+ fileName: 'doris-logo-horizontal-white.svg',
+ previewTheme: 'dark',
+ },
+ {
+ name: 'Doris Logo - Stacked White',
+ description: 'Centered single-color Doris logo for dark backgrounds.',
+ fileName: 'doris-logo-stacked-white.svg',
+ previewTheme: 'dark',
+ },
+ {
+ name: 'Apache Doris Logo - Horizontal',
+ description: 'Primary Apache Doris logo for light backgrounds.',
+ fileName: 'apache-doris-logo-horizontal-primary.svg',
+ previewTheme: 'light',
+ },
+ {
+ name: 'Apache Doris Logo - Stacked',
+ description: 'Centered Apache Doris logo for light backgrounds.',
+ fileName: 'apache-doris-logo-stacked-primary.svg',
+ previewTheme: 'light',
+ },
+ {
+ name: 'Apache Doris Logo - Horizontal Dark',
+ description: 'Apache Doris logo with white wordmark for dark
backgrounds.',
+ fileName: 'apache-doris-logo-horizontal-dark.svg',
+ previewTheme: 'dark',
+ },
+ {
+ name: 'Apache Doris Logo - Stacked Dark',
+ description: 'Centered Apache Doris logo with white wordmark for dark
backgrounds.',
+ fileName: 'apache-doris-logo-stacked-dark.svg',
+ previewTheme: 'dark',
+ },
+ {
+ name: 'Apache Doris Logo - Horizontal White',
+ description: 'Single-color Apache Doris logo for dark backgrounds.',
+ fileName: 'apache-doris-logo-horizontal-white.svg',
+ previewTheme: 'dark',
+ },
+ {
+ name: 'Apache Doris Logo - Stacked White',
+ description: 'Centered single-color Apache Doris logo for dark
backgrounds.',
+ fileName: 'apache-doris-logo-stacked-white.svg',
+ previewTheme: 'dark',
+ },
+];
+
+export default function BrandAssetsPage(): React.ReactElement {
+ return (
+ <Layout
+ title="Brand Assets - Apache Doris"
+ description="Download official Apache Doris logo and brand SVG
assets."
+ >
+ <main className="brand-assets">
+ <section className="brand-assets__hero">
+ <div className="container">
+ <p className="brand-assets__eyebrow">Resources</p>
+ <h1>Brand Assets</h1>
+ <p className="brand-assets__intro">
+ Download official Apache Doris SVG assets for
articles, presentations, community events,
+ integrations, and other materials that reference
the project.
+ </p>
+ </div>
+ </section>
+
+ <section className="brand-assets__content">
+ <div className="container">
+ <div className="brand-assets__notice" role="note">
+ Apache Doris, Doris, and the Doris logo are
trademarks of The Apache Software Foundation.
+ Use these assets to refer to Apache Doris clearly
and accurately.
+ </div>
+
+ <div className="brand-assets__grid">
+ {brandAssets.map(asset => {
+ const assetPath =
`${ASSET_BASE_PATH}/${asset.fileName}`;
+
+ return (
+ <article className="brand-assets__card"
key={asset.fileName}>
+ <div
+ className={`brand-assets__preview
brand-assets__preview--${asset.previewTheme}`}
+ >
+ <img src={assetPath}
alt={`${asset.name} preview`} loading="lazy" />
+ </div>
+ <div
className="brand-assets__card-body">
+ <div>
+ <h2>{asset.name}</h2>
+ <p>{asset.description}</p>
+ </div>
+ <div
className="brand-assets__card-footer">
+ <span>SVG</span>
+ <a href={assetPath}
download={asset.fileName}>
+ Download
+ </a>
+ </div>
+ </div>
+ </article>
+ );
+ })}
+ </div>
+ </div>
+ </section>
+ </main>
+ </Layout>
+ );
+}
diff --git a/static/images/brand-assets/apache-doris-logo-horizontal-dark.svg
b/static/images/brand-assets/apache-doris-logo-horizontal-dark.svg
new file mode 100644
index 00000000000..f87c1804f89
--- /dev/null
+++ b/static/images/brand-assets/apache-doris-logo-horizontal-dark.svg
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg id="_图层_1" data-name="图层_1" xmlns="http://www.w3.org/2000/svg"
version="1.1" viewBox="0 0 317.94 192.81">
+ <!-- Generator: Adobe Illustrator 30.4.0, SVG Export Plug-In . SVG Version:
2.1.4 Build 226) -->
+ <defs>
+ <style>
+ .st0 {
+ fill: #0dbe85;
+ }
+
+ .st1 {
+ fill: #fff;
+ }
+ </style>
+ </defs>
+ <g>
+ <path class="st0"
d="M54.92,84.94l-3.58-3.58c-.95-.95-2.24-1.47-3.5-1.47-1.17,0-2.33.43-3.24,1.29-.91.91-1.42,2.07-1.42,3.37s.47,2.46,1.38,3.37l6.52,6.52c.26.26.73.26,1.04,0l2.81-2.81c.17-.22,3.15-3.58,0-6.69Z"/>
+ <path class="st0"
d="M60.83,90.68c-.69-.65-1.38-1.34-2.03-2.11l-.04-.04s-.04.13-.04.22c-.26,1.55-.99,2.93-2.2,4.14-3.8,3.75-7.64,7.64-11.35,11.35l-.47.47c-.86.86-1.34,1.77-1.47,2.68-.17,1.38.3,2.93,1.34,4.06.91.99,2.11,1.51,3.41,1.47,1.47.04,2.2-.17,3.28-1.21,4.32-4.23,8.63-8.5,11.91-11.74,1.55-1.55,1.9-4.06.82-5.78-.91-1.34-2.03-2.42-3.15-3.5Z"/>
+ <path class="st0"
d="M39.94,88.44v15.93c0,.43.3.69.56.82.26.13.65.13.95-.17l8.03-8.03c.3-.3.3-.82,0-1.17l-8.03-8.03c-.17-.17-.43-.26-.6-.26-.13,0-.26.04-.35.09-.26.13-.56.39-.56.82Z"/>
+ </g>
+ <g>
+ <g>
+ <path class="st1"
d="M183.38,105.88v-18.76h5.57c6.11,0,9.89,3.6,9.89,9.35s-3.78,9.35-9.89,9.35h-5.57v.06ZM186.38,103.18h2.7c4.13,0,6.77-2.64,6.77-6.65s-2.64-6.65-6.77-6.65h-2.7v13.3Z"/>
+ <path class="st1"
d="M212.2,106.18c-5.39,0-9.77-4.37-9.77-9.71s4.37-9.65,9.77-9.65,9.77,4.25,9.77,9.65c.06,5.45-4.25,9.71-9.77,9.71ZM212.2,89.58c-3.72,0-6.77,3.06-6.77,6.89s3.06,6.95,6.77,6.95,6.83-3.18,6.83-6.95-3.06-6.89-6.83-6.89Z"/>
+ <path class="st1" d="M249.6,87.12h-3.06v18.76h3.06v-18.76Z"/>
+ <path class="st1"
d="M260.92,106.18c-2.64,0-4.79-.78-5.75-1.26v-2.76c1.32.6,3.42,1.32,5.75,1.32s4.01-1.08,4.01-2.7c0-1.8-1.98-2.58-4.01-3.3-3.24-1.2-5.69-2.34-5.69-5.45,0-3.84,3.48-5.21,6.47-5.21,2.28,0,4.07.6,4.91.9v2.7c-1.2-.48-3-1.02-4.97-1.02-2.28,0-3.36,1.2-3.36,2.4,0,1.62,1.74,2.22,3.77,2.94,3.54,1.26,6.23,2.52,6.23,5.87-.06,3.3-3.06,5.57-7.37,5.57Z"/>
+ <path class="st1"
d="M235.81,98.27l1.14-.48c1.56-.66,3.36-2.4,3.36-5.09,0-3.36-2.46-5.57-6.17-5.57h-7.13v18.76h3v-16.12h3.78c2.28,0,3.48,1.68,3.48,3.3s-1.2,3.3-3.48,3.3h-1.62c-.72.12-.36.72-.36.72l6.05,8.75h3.36l-5.39-7.55Z"/>
+ </g>
+ <g>
+ <path class="st1"
d="M80.58,87.1h1.87l8.34,18.71h-2.73l-2.48-5.51h-7.94l-2.33,5.51h-2.74l7.99-18.71ZM84.49,97.93l-3-6.74-2.78,6.74h5.79Z"/>
+ <path class="st1"
d="M93.07,105.82v-18.63h5.9c1.78,0,3.19.48,4.25,1.44,1.06.96,1.59,2.25,1.59,3.86,0,1.08-.27,2.04-.81,2.88-.54.83-1.28,1.44-2.22,1.82-.94.38-2.29.57-4.05.57h-1.97v8.07h-2.68ZM98.51,89.55h-2.76v5.82h2.92c1.08,0,1.92-.26,2.5-.77.59-.51.88-1.24.88-2.19,0-1.91-1.18-2.86-3.54-2.86Z"/>
+ <path class="st1"
d="M111.89,87.1h1.87l8.34,18.71h-2.73l-2.48-5.51h-7.94l-2.33,5.51h-2.74l7.99-18.71ZM115.8,97.93l-3-6.74-2.78,6.74h5.79Z"/>
+ <path class="st1"
d="M139.29,101.5v2.93c-1.95,1.07-4.21,1.6-6.77,1.6-2.08,0-3.84-.42-5.29-1.25-1.45-.83-2.59-1.98-3.44-3.45s-1.27-3.05-1.27-4.76c0-2.71.97-4.99,2.9-6.83s4.31-2.77,7.15-2.77c1.95,0,4.12.51,6.51,1.53v2.86c-2.18-1.24-4.3-1.86-6.38-1.86s-3.9.67-5.31,2.02c-1.41,1.35-2.11,3.03-2.11,5.06s.69,3.72,2.08,5.04,3.16,1.97,5.31,1.97,4.46-.69,6.61-2.08Z"/>
+ <path class="st1"
d="M156.08,87.21h2.66v18.61h-2.66v-8.1h-10.46v8.1h-2.66v-18.61h2.66v8.05h10.46v-8.05Z"/>
+ <path class="st1"
d="M163.26,87.21h10.55v2.37h-7.89v5.67h7.62v2.38h-7.62v5.78h8.14v2.37h-10.8v-18.58Z"/>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git
a/static/images/brand-assets/apache-doris-logo-horizontal-primary.svg
b/static/images/brand-assets/apache-doris-logo-horizontal-primary.svg
new file mode 100644
index 00000000000..b8e10d874f8
--- /dev/null
+++ b/static/images/brand-assets/apache-doris-logo-horizontal-primary.svg
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg id="_图层_1" data-name="图层_1" xmlns="http://www.w3.org/2000/svg"
version="1.1" viewBox="0 0 317.94 192.81">
+ <!-- Generator: Adobe Illustrator 30.4.0, SVG Export Plug-In . SVG Version:
2.1.4 Build 226) -->
+ <defs>
+ <style>
+ .st0 {
+ fill: #0dbe85;
+ }
+
+ .st1 {
+ fill: #1d2434;
+ }
+ </style>
+ </defs>
+ <g>
+ <path class="st0"
d="M59.77,84.94l-3.58-3.58c-.95-.95-2.24-1.47-3.5-1.47-1.17,0-2.33.43-3.24,1.29-.91.91-1.42,2.07-1.42,3.37s.47,2.46,1.38,3.37l6.52,6.52c.26.26.73.26,1.04,0l2.81-2.81c.17-.22,3.15-3.58,0-6.69Z"/>
+ <path class="st0"
d="M65.68,90.68c-.69-.65-1.38-1.34-2.03-2.11l-.04-.04s-.04.13-.04.22c-.26,1.55-.99,2.93-2.2,4.14-3.8,3.75-7.64,7.64-11.35,11.35l-.47.47c-.86.86-1.34,1.77-1.47,2.68-.17,1.38.3,2.93,1.34,4.06.91.99,2.11,1.51,3.41,1.47,1.47.04,2.2-.17,3.28-1.21,4.32-4.23,8.63-8.5,11.91-11.74,1.55-1.55,1.9-4.06.82-5.78-.91-1.34-2.03-2.42-3.15-3.5Z"/>
+ <path class="st0"
d="M44.79,88.44v15.93c0,.43.3.69.56.82.26.13.65.13.95-.17l8.03-8.03c.3-.3.3-.82,0-1.17l-8.03-8.03c-.17-.17-.43-.26-.6-.26-.13,0-.26.04-.35.09-.26.13-.56.39-.56.82Z"/>
+ </g>
+ <g>
+ <g>
+ <path class="st1"
d="M188.23,105.88v-18.76h5.57c6.11,0,9.89,3.6,9.89,9.35s-3.78,9.35-9.89,9.35h-5.57v.06ZM191.23,103.18h2.7c4.13,0,6.77-2.64,6.77-6.65s-2.64-6.65-6.77-6.65h-2.7v13.3Z"/>
+ <path class="st1"
d="M217.05,106.18c-5.39,0-9.77-4.37-9.77-9.71s4.37-9.65,9.77-9.65,9.77,4.25,9.77,9.65c.06,5.45-4.25,9.71-9.77,9.71ZM217.05,89.58c-3.72,0-6.77,3.06-6.77,6.89s3.06,6.95,6.77,6.95,6.83-3.18,6.83-6.95-3.06-6.89-6.83-6.89Z"/>
+ <path class="st1" d="M254.45,87.12h-3.06v18.76h3.06v-18.76Z"/>
+ <path class="st1"
d="M265.77,106.18c-2.64,0-4.79-.78-5.75-1.26v-2.76c1.32.6,3.42,1.32,5.75,1.32s4.01-1.08,4.01-2.7c0-1.8-1.98-2.58-4.01-3.3-3.24-1.2-5.69-2.34-5.69-5.45,0-3.84,3.48-5.21,6.47-5.21,2.28,0,4.07.6,4.91.9v2.7c-1.2-.48-3-1.02-4.97-1.02-2.28,0-3.36,1.2-3.36,2.4,0,1.62,1.74,2.22,3.77,2.94,3.54,1.26,6.23,2.52,6.23,5.87-.06,3.3-3.06,5.57-7.37,5.57Z"/>
+ <path class="st1"
d="M240.66,98.27l1.14-.48c1.56-.66,3.36-2.4,3.36-5.09,0-3.36-2.46-5.57-6.17-5.57h-7.13v18.76h3v-16.12h3.78c2.28,0,3.48,1.68,3.48,3.3s-1.2,3.3-3.48,3.3h-1.62c-.72.12-.36.72-.36.72l6.05,8.75h3.36l-5.39-7.55Z"/>
+ </g>
+ <g>
+ <path class="st1"
d="M85.43,87.1h1.87l8.34,18.71h-2.73l-2.48-5.51h-7.94l-2.33,5.51h-2.74l7.99-18.71ZM89.34,97.93l-3-6.74-2.78,6.74h5.79Z"/>
+ <path class="st1"
d="M97.92,105.82v-18.63h5.9c1.78,0,3.19.48,4.25,1.44,1.06.96,1.59,2.25,1.59,3.86,0,1.08-.27,2.04-.81,2.88-.54.83-1.28,1.44-2.22,1.82-.94.38-2.29.57-4.05.57h-1.97v8.07h-2.68ZM103.36,89.55h-2.76v5.82h2.92c1.08,0,1.92-.26,2.5-.77.59-.51.88-1.24.88-2.19,0-1.91-1.18-2.86-3.54-2.86Z"/>
+ <path class="st1"
d="M116.74,87.1h1.87l8.34,18.71h-2.73l-2.48-5.51h-7.94l-2.33,5.51h-2.74l7.99-18.71ZM120.65,97.93l-3-6.74-2.78,6.74h5.79Z"/>
+ <path class="st1"
d="M144.14,101.5v2.93c-1.95,1.07-4.21,1.6-6.77,1.6-2.08,0-3.84-.42-5.29-1.25-1.45-.83-2.59-1.98-3.44-3.45s-1.27-3.05-1.27-4.76c0-2.71.97-4.99,2.9-6.83s4.31-2.77,7.15-2.77c1.95,0,4.12.51,6.51,1.53v2.86c-2.18-1.24-4.3-1.86-6.38-1.86s-3.9.67-5.31,2.02c-1.41,1.35-2.11,3.03-2.11,5.06s.69,3.72,2.08,5.04,3.16,1.97,5.31,1.97,4.46-.69,6.61-2.08Z"/>
+ <path class="st1"
d="M160.93,87.21h2.66v18.61h-2.66v-8.1h-10.46v8.1h-2.66v-18.61h2.66v8.05h10.46v-8.05Z"/>
+ <path class="st1"
d="M168.12,87.21h10.55v2.37h-7.89v5.67h7.62v2.38h-7.62v5.78h8.14v2.37h-10.8v-18.58Z"/>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/static/images/brand-assets/apache-doris-logo-horizontal-white.svg
b/static/images/brand-assets/apache-doris-logo-horizontal-white.svg
new file mode 100644
index 00000000000..5738a5dc489
--- /dev/null
+++ b/static/images/brand-assets/apache-doris-logo-horizontal-white.svg
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg id="_图层_1" data-name="图层_1" xmlns="http://www.w3.org/2000/svg"
version="1.1" viewBox="0 0 317.94 192.81">
+ <!-- Generator: Adobe Illustrator 30.4.0, SVG Export Plug-In . SVG Version:
2.1.4 Build 226) -->
+ <defs>
+ <style>
+ .st0 {
+ fill: #fff;
+ }
+ </style>
+ </defs>
+ <g>
+ <path class="st0"
d="M59.77,84.94l-3.58-3.58c-.95-.95-2.24-1.47-3.5-1.47-1.17,0-2.33.43-3.24,1.29-.91.91-1.42,2.07-1.42,3.37s.47,2.46,1.38,3.37l6.52,6.52c.26.26.73.26,1.04,0l2.81-2.81c.17-.22,3.15-3.58,0-6.69Z"/>
+ <path class="st0"
d="M65.68,90.68c-.69-.65-1.38-1.34-2.03-2.11l-.04-.04s-.04.13-.04.22c-.26,1.55-.99,2.93-2.2,4.14-3.8,3.75-7.64,7.64-11.35,11.35l-.47.47c-.86.86-1.34,1.77-1.47,2.68-.17,1.38.3,2.93,1.34,4.06.91.99,2.11,1.51,3.41,1.47,1.47.04,2.2-.17,3.28-1.21,4.32-4.23,8.63-8.5,11.91-11.74,1.55-1.55,1.9-4.06.82-5.78-.91-1.34-2.03-2.42-3.15-3.5Z"/>
+ <path class="st0"
d="M44.79,88.44v15.93c0,.43.3.69.56.82.26.13.65.13.95-.17l8.03-8.03c.3-.3.3-.82,0-1.17l-8.03-8.03c-.17-.17-.43-.26-.6-.26-.13,0-.26.04-.35.09-.26.13-.56.39-.56.82Z"/>
+ </g>
+ <g>
+ <g>
+ <path class="st0"
d="M188.23,105.88v-18.76h5.57c6.11,0,9.89,3.6,9.89,9.35s-3.78,9.35-9.89,9.35h-5.57v.06ZM191.23,103.18h2.7c4.13,0,6.77-2.64,6.77-6.65s-2.64-6.65-6.77-6.65h-2.7v13.3Z"/>
+ <path class="st0"
d="M217.05,106.18c-5.39,0-9.77-4.37-9.77-9.71s4.37-9.65,9.77-9.65,9.77,4.25,9.77,9.65c.06,5.45-4.25,9.71-9.77,9.71ZM217.05,89.58c-3.72,0-6.77,3.06-6.77,6.89s3.06,6.95,6.77,6.95,6.83-3.18,6.83-6.95-3.06-6.89-6.83-6.89Z"/>
+ <path class="st0" d="M254.45,87.12h-3.06v18.76h3.06v-18.76Z"/>
+ <path class="st0"
d="M265.77,106.18c-2.64,0-4.79-.78-5.75-1.26v-2.76c1.32.6,3.42,1.32,5.75,1.32s4.01-1.08,4.01-2.7c0-1.8-1.98-2.58-4.01-3.3-3.24-1.2-5.69-2.34-5.69-5.45,0-3.84,3.48-5.21,6.47-5.21,2.28,0,4.07.6,4.91.9v2.7c-1.2-.48-3-1.02-4.97-1.02-2.28,0-3.36,1.2-3.36,2.4,0,1.62,1.74,2.22,3.77,2.94,3.54,1.26,6.23,2.52,6.23,5.87-.06,3.3-3.06,5.57-7.37,5.57Z"/>
+ <path class="st0"
d="M240.66,98.27l1.14-.48c1.56-.66,3.36-2.4,3.36-5.09,0-3.36-2.46-5.57-6.17-5.57h-7.13v18.76h3v-16.12h3.78c2.28,0,3.48,1.68,3.48,3.3s-1.2,3.3-3.48,3.3h-1.62c-.72.12-.36.72-.36.72l6.05,8.75h3.36l-5.39-7.55Z"/>
+ </g>
+ <g>
+ <path class="st0"
d="M85.43,87.1h1.87l8.34,18.71h-2.73l-2.48-5.51h-7.94l-2.33,5.51h-2.74l7.99-18.71ZM89.34,97.93l-3-6.74-2.78,6.74h5.79Z"/>
+ <path class="st0"
d="M97.92,105.82v-18.63h5.9c1.78,0,3.19.48,4.25,1.44,1.06.96,1.59,2.25,1.59,3.86,0,1.08-.27,2.04-.81,2.88-.54.83-1.28,1.44-2.22,1.82-.94.38-2.29.57-4.05.57h-1.97v8.07h-2.68ZM103.36,89.55h-2.76v5.82h2.92c1.08,0,1.92-.26,2.5-.77.59-.51.88-1.24.88-2.19,0-1.91-1.18-2.86-3.54-2.86Z"/>
+ <path class="st0"
d="M116.74,87.1h1.87l8.34,18.71h-2.73l-2.48-5.51h-7.94l-2.33,5.51h-2.74l7.99-18.71ZM120.65,97.93l-3-6.74-2.78,6.74h5.79Z"/>
+ <path class="st0"
d="M144.14,101.5v2.93c-1.95,1.07-4.21,1.6-6.77,1.6-2.08,0-3.84-.42-5.29-1.25-1.45-.83-2.59-1.98-3.44-3.45s-1.27-3.05-1.27-4.76c0-2.71.97-4.99,2.9-6.83s4.31-2.77,7.15-2.77c1.95,0,4.12.51,6.51,1.53v2.86c-2.18-1.24-4.3-1.86-6.38-1.86s-3.9.67-5.31,2.02c-1.41,1.35-2.11,3.03-2.11,5.06s.69,3.72,2.08,5.04,3.16,1.97,5.31,1.97,4.46-.69,6.61-2.08Z"/>
+ <path class="st0"
d="M160.93,87.21h2.66v18.61h-2.66v-8.1h-10.46v8.1h-2.66v-18.61h2.66v8.05h10.46v-8.05Z"/>
+ <path class="st0"
d="M168.12,87.21h10.55v2.37h-7.89v5.67h7.62v2.38h-7.62v5.78h8.14v2.37h-10.8v-18.58Z"/>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/static/images/brand-assets/apache-doris-logo-stacked-dark.svg
b/static/images/brand-assets/apache-doris-logo-stacked-dark.svg
new file mode 100644
index 00000000000..d498a3481a4
--- /dev/null
+++ b/static/images/brand-assets/apache-doris-logo-stacked-dark.svg
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg id="_图层_1" data-name="图层_1" xmlns="http://www.w3.org/2000/svg"
version="1.1" viewBox="0 0 317.94 192.81">
+ <!-- Generator: Adobe Illustrator 30.4.0, SVG Export Plug-In . SVG Version:
2.1.4 Build 226) -->
+ <defs>
+ <style>
+ .st0 {
+ fill: #0dbe85;
+ }
+
+ .st1 {
+ fill: #fff;
+ }
+ </style>
+ </defs>
+ <g>
+ <path class="st0"
d="M163.74,59.78l-6.46-6.46c-1.71-1.71-4.05-2.65-6.31-2.65-2.1,0-4.2.78-5.84,2.34-1.63,1.63-2.57,3.74-2.57,6.07s.86,4.44,2.49,6.07l11.75,11.75c.47.47,1.32.47,1.87,0l5.06-5.06c.31-.39,5.68-6.46,0-12.07Z"/>
+ <path class="st0"
d="M174.4,70.14c-1.25-1.17-2.49-2.41-3.66-3.81l-.08-.08c0,.08-.08.23-.08.39-.47,2.8-1.79,5.29-3.97,7.47-6.85,6.77-13.78,13.78-20.47,20.47l-.86.86c-1.56,1.56-2.41,3.19-2.65,4.83-.31,2.49.54,5.29,2.41,7.32,1.63,1.79,3.81,2.72,6.15,2.65,2.65.08,3.97-.31,5.92-2.18,7.78-7.63,15.57-15.34,21.49-21.17,2.8-2.8,3.43-7.32,1.48-10.43-1.63-2.41-3.66-4.36-5.68-6.31Z"/>
+ <path class="st0"
d="M136.72,66.09v28.72c0,.78.54,1.25,1.01,1.48.47.23,1.17.23,1.71-.31l14.48-14.48c.54-.54.54-1.48,0-2.1l-14.48-14.48c-.31-.31-.78-.47-1.09-.47-.23,0-.47.08-.62.16-.47.23-1.01.7-1.01,1.48Z"/>
+ </g>
+ <g>
+ <g>
+ <path class="st1"
d="M171.91,141.83v-18.76h5.57c6.11,0,9.89,3.6,9.89,9.35s-3.78,9.35-9.89,9.35h-5.57v.06ZM174.9,139.14h2.7c4.13,0,6.77-2.64,6.77-6.65s-2.64-6.65-6.77-6.65h-2.7v13.3Z"/>
+ <path class="st1"
d="M200.73,142.13c-5.39,0-9.77-4.37-9.77-9.71s4.37-9.65,9.77-9.65,9.77,4.25,9.77,9.65c.06,5.45-4.25,9.71-9.77,9.71ZM200.73,125.53c-3.72,0-6.77,3.06-6.77,6.89s3.06,6.95,6.77,6.95,6.83-3.18,6.83-6.95-3.06-6.89-6.83-6.89Z"/>
+ <path class="st1" d="M238.12,123.08h-3.06v18.76h3.06v-18.76Z"/>
+ <path class="st1"
d="M249.45,142.13c-2.64,0-4.79-.78-5.75-1.26v-2.76c1.32.6,3.42,1.32,5.75,1.32s4.01-1.08,4.01-2.7c0-1.8-1.98-2.58-4.01-3.3-3.24-1.2-5.69-2.34-5.69-5.45,0-3.84,3.48-5.21,6.47-5.21,2.28,0,4.07.6,4.91.9v2.7c-1.2-.48-3-1.02-4.97-1.02-2.28,0-3.36,1.2-3.36,2.4,0,1.62,1.74,2.22,3.77,2.94,3.54,1.26,6.23,2.52,6.23,5.87-.06,3.3-3.06,5.57-7.37,5.57Z"/>
+ <path class="st1"
d="M224.34,134.22l1.14-.48c1.56-.66,3.36-2.4,3.36-5.09,0-3.36-2.46-5.57-6.17-5.57h-7.13v18.76h3v-16.12h3.78c2.28,0,3.48,1.68,3.48,3.3s-1.2,3.3-3.48,3.3h-1.62c-.72.12-.36.72-.36.72l6.05,8.75h3.36l-5.39-7.55Z"/>
+ </g>
+ <g>
+ <path class="st1"
d="M69.11,123.06h1.87l8.34,18.71h-2.73l-2.48-5.51h-7.94l-2.33,5.51h-2.74l7.99-18.71ZM73.02,133.89l-3-6.74-2.78,6.74h5.79Z"/>
+ <path class="st1"
d="M81.6,141.77v-18.63h5.9c1.78,0,3.19.48,4.25,1.44,1.06.96,1.59,2.25,1.59,3.86,0,1.08-.27,2.04-.81,2.88-.54.83-1.28,1.44-2.22,1.82-.94.38-2.29.57-4.05.57h-1.97v8.07h-2.68ZM87.03,125.51h-2.76v5.82h2.92c1.08,0,1.92-.26,2.5-.77.59-.51.88-1.24.88-2.19,0-1.91-1.18-2.86-3.54-2.86Z"/>
+ <path class="st1"
d="M100.42,123.06h1.87l8.34,18.71h-2.73l-2.48-5.51h-7.94l-2.33,5.51h-2.74l7.99-18.71ZM104.33,133.89l-3-6.74-2.78,6.74h5.79Z"/>
+ <path class="st1"
d="M127.82,137.46v2.93c-1.95,1.07-4.21,1.6-6.77,1.6-2.08,0-3.84-.42-5.29-1.25-1.45-.83-2.59-1.98-3.44-3.45s-1.27-3.05-1.27-4.76c0-2.71.97-4.99,2.9-6.83s4.31-2.77,7.15-2.77c1.95,0,4.12.51,6.51,1.53v2.86c-2.18-1.24-4.3-1.86-6.38-1.86s-3.9.67-5.31,2.02c-1.41,1.35-2.11,3.03-2.11,5.06s.69,3.72,2.08,5.04,3.16,1.97,5.31,1.97,4.46-.69,6.61-2.08Z"/>
+ <path class="st1"
d="M144.61,123.16h2.66v18.61h-2.66v-8.1h-10.46v8.1h-2.66v-18.61h2.66v8.05h10.46v-8.05Z"/>
+ <path class="st1"
d="M151.79,123.16h10.55v2.37h-7.89v5.67h7.62v2.38h-7.62v5.78h8.14v2.37h-10.8v-18.58Z"/>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/static/images/brand-assets/apache-doris-logo-stacked-primary.svg
b/static/images/brand-assets/apache-doris-logo-stacked-primary.svg
new file mode 100644
index 00000000000..c0de3eb8892
--- /dev/null
+++ b/static/images/brand-assets/apache-doris-logo-stacked-primary.svg
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg id="_图层_1" data-name="图层_1" xmlns="http://www.w3.org/2000/svg"
version="1.1" viewBox="0 0 317.94 192.81">
+ <!-- Generator: Adobe Illustrator 30.4.0, SVG Export Plug-In . SVG Version:
2.1.4 Build 226) -->
+ <defs>
+ <style>
+ .st0 {
+ fill: #0dbe85;
+ }
+
+ .st1 {
+ fill: #1d2434;
+ }
+ </style>
+ </defs>
+ <g>
+ <path class="st0"
d="M163.74,59.78l-6.46-6.46c-1.71-1.71-4.05-2.65-6.31-2.65-2.1,0-4.2.78-5.84,2.34-1.63,1.63-2.57,3.74-2.57,6.07s.86,4.44,2.49,6.07l11.75,11.75c.47.47,1.32.47,1.87,0l5.06-5.06c.31-.39,5.68-6.46,0-12.07Z"/>
+ <path class="st0"
d="M174.4,70.14c-1.25-1.17-2.49-2.41-3.66-3.81l-.08-.08c0,.08-.08.23-.08.39-.47,2.8-1.79,5.29-3.97,7.47-6.85,6.77-13.78,13.78-20.47,20.47l-.86.86c-1.56,1.56-2.41,3.19-2.65,4.83-.31,2.49.54,5.29,2.41,7.32,1.63,1.79,3.81,2.72,6.15,2.65,2.65.08,3.97-.31,5.92-2.18,7.78-7.63,15.57-15.34,21.49-21.17,2.8-2.8,3.43-7.32,1.48-10.43-1.63-2.41-3.66-4.36-5.68-6.31Z"/>
+ <path class="st0"
d="M136.72,66.09v28.72c0,.78.54,1.25,1.01,1.48.47.23,1.17.23,1.71-.31l14.48-14.48c.54-.54.54-1.48,0-2.1l-14.48-14.48c-.31-.31-.78-.47-1.09-.47-.23,0-.47.08-.62.16-.47.23-1.01.7-1.01,1.48Z"/>
+ </g>
+ <g>
+ <g>
+ <path class="st1"
d="M171.91,141.83v-18.76h5.57c6.11,0,9.89,3.6,9.89,9.35s-3.78,9.35-9.89,9.35h-5.57v.06ZM174.9,139.14h2.7c4.13,0,6.77-2.64,6.77-6.65s-2.64-6.65-6.77-6.65h-2.7v13.3Z"/>
+ <path class="st1"
d="M200.73,142.13c-5.39,0-9.77-4.37-9.77-9.71s4.37-9.65,9.77-9.65,9.77,4.25,9.77,9.65c.06,5.45-4.25,9.71-9.77,9.71ZM200.73,125.53c-3.72,0-6.77,3.06-6.77,6.89s3.06,6.95,6.77,6.95,6.83-3.18,6.83-6.95-3.06-6.89-6.83-6.89Z"/>
+ <path class="st1" d="M238.12,123.08h-3.06v18.76h3.06v-18.76Z"/>
+ <path class="st1"
d="M249.45,142.13c-2.64,0-4.79-.78-5.75-1.26v-2.76c1.32.6,3.42,1.32,5.75,1.32s4.01-1.08,4.01-2.7c0-1.8-1.98-2.58-4.01-3.3-3.24-1.2-5.69-2.34-5.69-5.45,0-3.84,3.48-5.21,6.47-5.21,2.28,0,4.07.6,4.91.9v2.7c-1.2-.48-3-1.02-4.97-1.02-2.28,0-3.36,1.2-3.36,2.4,0,1.62,1.74,2.22,3.77,2.94,3.54,1.26,6.23,2.52,6.23,5.87-.06,3.3-3.06,5.57-7.37,5.57Z"/>
+ <path class="st1"
d="M224.34,134.22l1.14-.48c1.56-.66,3.36-2.4,3.36-5.09,0-3.36-2.46-5.57-6.17-5.57h-7.13v18.76h3v-16.12h3.78c2.28,0,3.48,1.68,3.48,3.3s-1.2,3.3-3.48,3.3h-1.62c-.72.12-.36.72-.36.72l6.05,8.75h3.36l-5.39-7.55Z"/>
+ </g>
+ <g>
+ <path class="st1"
d="M69.11,123.06h1.87l8.34,18.71h-2.73l-2.48-5.51h-7.94l-2.33,5.51h-2.74l7.99-18.71ZM73.02,133.89l-3-6.74-2.78,6.74h5.79Z"/>
+ <path class="st1"
d="M81.6,141.77v-18.63h5.9c1.78,0,3.19.48,4.25,1.44,1.06.96,1.59,2.25,1.59,3.86,0,1.08-.27,2.04-.81,2.88-.54.83-1.28,1.44-2.22,1.82-.94.38-2.29.57-4.05.57h-1.97v8.07h-2.68ZM87.03,125.51h-2.76v5.82h2.92c1.08,0,1.92-.26,2.5-.77.59-.51.88-1.24.88-2.19,0-1.91-1.18-2.86-3.54-2.86Z"/>
+ <path class="st1"
d="M100.42,123.06h1.87l8.34,18.71h-2.73l-2.48-5.51h-7.94l-2.33,5.51h-2.74l7.99-18.71ZM104.33,133.89l-3-6.74-2.78,6.74h5.79Z"/>
+ <path class="st1"
d="M127.82,137.46v2.93c-1.95,1.07-4.21,1.6-6.77,1.6-2.08,0-3.84-.42-5.29-1.25-1.45-.83-2.59-1.98-3.44-3.45s-1.27-3.05-1.27-4.76c0-2.71.97-4.99,2.9-6.83s4.31-2.77,7.15-2.77c1.95,0,4.12.51,6.51,1.53v2.86c-2.18-1.24-4.3-1.86-6.38-1.86s-3.9.67-5.31,2.02c-1.41,1.35-2.11,3.03-2.11,5.06s.69,3.72,2.08,5.04,3.16,1.97,5.31,1.97,4.46-.69,6.61-2.08Z"/>
+ <path class="st1"
d="M144.61,123.16h2.66v18.61h-2.66v-8.1h-10.46v8.1h-2.66v-18.61h2.66v8.05h10.46v-8.05Z"/>
+ <path class="st1"
d="M151.79,123.16h10.55v2.37h-7.89v5.67h7.62v2.38h-7.62v5.78h8.14v2.37h-10.8v-18.58Z"/>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/static/images/brand-assets/apache-doris-logo-stacked-white.svg
b/static/images/brand-assets/apache-doris-logo-stacked-white.svg
new file mode 100644
index 00000000000..105c327860a
--- /dev/null
+++ b/static/images/brand-assets/apache-doris-logo-stacked-white.svg
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg id="_图层_1" data-name="图层_1" xmlns="http://www.w3.org/2000/svg"
version="1.1" viewBox="0 0 317.94 192.81">
+ <!-- Generator: Adobe Illustrator 30.4.0, SVG Export Plug-In . SVG Version:
2.1.4 Build 226) -->
+ <defs>
+ <style>
+ .st0 {
+ fill: #fff;
+ }
+ </style>
+ </defs>
+ <g>
+ <path class="st0"
d="M163.74,59.78l-6.46-6.46c-1.71-1.71-4.05-2.65-6.31-2.65-2.1,0-4.2.78-5.84,2.34-1.63,1.63-2.57,3.74-2.57,6.07s.86,4.44,2.49,6.07l11.75,11.75c.47.47,1.32.47,1.87,0l5.06-5.06c.31-.39,5.68-6.46,0-12.07Z"/>
+ <path class="st0"
d="M174.4,70.14c-1.25-1.17-2.49-2.41-3.66-3.81l-.08-.08c0,.08-.08.23-.08.39-.47,2.8-1.79,5.29-3.97,7.47-6.85,6.77-13.78,13.78-20.47,20.47l-.86.86c-1.56,1.56-2.41,3.19-2.65,4.83-.31,2.49.54,5.29,2.41,7.32,1.63,1.79,3.81,2.72,6.15,2.65,2.65.08,3.97-.31,5.92-2.18,7.78-7.63,15.57-15.34,21.49-21.17,2.8-2.8,3.43-7.32,1.48-10.43-1.63-2.41-3.66-4.36-5.68-6.31Z"/>
+ <path class="st0"
d="M136.72,66.09v28.72c0,.78.54,1.25,1.01,1.48.47.23,1.17.23,1.71-.31l14.48-14.48c.54-.54.54-1.48,0-2.1l-14.48-14.48c-.31-.31-.78-.47-1.09-.47-.23,0-.47.08-.62.16-.47.23-1.01.7-1.01,1.48Z"/>
+ </g>
+ <g>
+ <g>
+ <path class="st0"
d="M171.91,141.83v-18.76h5.57c6.11,0,9.89,3.6,9.89,9.35s-3.78,9.35-9.89,9.35h-5.57v.06ZM174.9,139.14h2.7c4.13,0,6.77-2.64,6.77-6.65s-2.64-6.65-6.77-6.65h-2.7v13.3Z"/>
+ <path class="st0"
d="M200.73,142.13c-5.39,0-9.77-4.37-9.77-9.71s4.37-9.65,9.77-9.65,9.77,4.25,9.77,9.65c.06,5.45-4.25,9.71-9.77,9.71ZM200.73,125.53c-3.72,0-6.77,3.06-6.77,6.89s3.06,6.95,6.77,6.95,6.83-3.18,6.83-6.95-3.06-6.89-6.83-6.89Z"/>
+ <path class="st0" d="M238.12,123.08h-3.06v18.76h3.06v-18.76Z"/>
+ <path class="st0"
d="M249.45,142.13c-2.64,0-4.79-.78-5.75-1.26v-2.76c1.32.6,3.42,1.32,5.75,1.32s4.01-1.08,4.01-2.7c0-1.8-1.98-2.58-4.01-3.3-3.24-1.2-5.69-2.34-5.69-5.45,0-3.84,3.48-5.21,6.47-5.21,2.28,0,4.07.6,4.91.9v2.7c-1.2-.48-3-1.02-4.97-1.02-2.28,0-3.36,1.2-3.36,2.4,0,1.62,1.74,2.22,3.77,2.94,3.54,1.26,6.23,2.52,6.23,5.87-.06,3.3-3.06,5.57-7.37,5.57Z"/>
+ <path class="st0"
d="M224.34,134.22l1.14-.48c1.56-.66,3.36-2.4,3.36-5.09,0-3.36-2.46-5.57-6.17-5.57h-7.13v18.76h3v-16.12h3.78c2.28,0,3.48,1.68,3.48,3.3s-1.2,3.3-3.48,3.3h-1.62c-.72.12-.36.72-.36.72l6.05,8.75h3.36l-5.39-7.55Z"/>
+ </g>
+ <g>
+ <path class="st0"
d="M69.11,123.06h1.87l8.34,18.71h-2.73l-2.48-5.51h-7.94l-2.33,5.51h-2.74l7.99-18.71ZM73.02,133.89l-3-6.74-2.78,6.74h5.79Z"/>
+ <path class="st0"
d="M81.6,141.77v-18.63h5.9c1.78,0,3.19.48,4.25,1.44,1.06.96,1.59,2.25,1.59,3.86,0,1.08-.27,2.04-.81,2.88-.54.83-1.28,1.44-2.22,1.82-.94.38-2.29.57-4.05.57h-1.97v8.07h-2.68ZM87.03,125.51h-2.76v5.82h2.92c1.08,0,1.92-.26,2.5-.77.59-.51.88-1.24.88-2.19,0-1.91-1.18-2.86-3.54-2.86Z"/>
+ <path class="st0"
d="M100.42,123.06h1.87l8.34,18.71h-2.73l-2.48-5.51h-7.94l-2.33,5.51h-2.74l7.99-18.71ZM104.33,133.89l-3-6.74-2.78,6.74h5.79Z"/>
+ <path class="st0"
d="M127.82,137.46v2.93c-1.95,1.07-4.21,1.6-6.77,1.6-2.08,0-3.84-.42-5.29-1.25-1.45-.83-2.59-1.98-3.44-3.45s-1.27-3.05-1.27-4.76c0-2.71.97-4.99,2.9-6.83s4.31-2.77,7.15-2.77c1.95,0,4.12.51,6.51,1.53v2.86c-2.18-1.24-4.3-1.86-6.38-1.86s-3.9.67-5.31,2.02c-1.41,1.35-2.11,3.03-2.11,5.06s.69,3.72,2.08,5.04,3.16,1.97,5.31,1.97,4.46-.69,6.61-2.08Z"/>
+ <path class="st0"
d="M144.61,123.16h2.66v18.61h-2.66v-8.1h-10.46v8.1h-2.66v-18.61h2.66v8.05h10.46v-8.05Z"/>
+ <path class="st0"
d="M151.79,123.16h10.55v2.37h-7.89v5.67h7.62v2.38h-7.62v5.78h8.14v2.37h-10.8v-18.58Z"/>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/static/images/brand-assets/doris-logo-horizontal-dark.svg
b/static/images/brand-assets/doris-logo-horizontal-dark.svg
new file mode 100644
index 00000000000..06346e2d4b6
--- /dev/null
+++ b/static/images/brand-assets/doris-logo-horizontal-dark.svg
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg id="_图层_1" data-name="图层_1" xmlns="http://www.w3.org/2000/svg"
version="1.1" viewBox="0 0 317.94 192.81">
+ <!-- Generator: Adobe Illustrator 30.4.0, SVG Export Plug-In . SVG Version:
2.1.4 Build 226) -->
+ <defs>
+ <style>
+ .st0 {
+ fill: #0dbe85;
+ }
+
+ .st1 {
+ fill: #fff;
+ }
+ </style>
+ </defs>
+ <path class="st0"
d="M77.24,68.09l-8.85-8.85c-2.35-2.35-5.54-3.63-8.64-3.63-2.88,0-5.76,1.07-8,3.2-2.24,2.24-3.52,5.12-3.52,8.32s1.17,6.08,3.41,8.32l16.1,16.1c.64.64,1.81.64,2.56,0l6.93-6.93c.43-.53,7.78-8.85,0-16.53Z"/>
+ <path class="st0"
d="M91.85,82.27c-1.71-1.6-3.41-3.31-5.01-5.22l-.11-.11c0,.11-.11.32-.11.53-.64,3.84-2.45,7.25-5.44,10.24-9.38,9.28-18.87,18.87-28.04,28.04l-1.17,1.17c-2.13,2.13-3.31,4.37-3.63,6.61-.43,3.41.75,7.25,3.31,10.02,2.24,2.45,5.22,3.73,8.42,3.62,3.63.11,5.44-.43,8.1-2.98,10.66-10.45,21.32-21,29.43-29,3.84-3.84,4.69-10.02,2.03-14.29-2.24-3.31-5.01-5.97-7.78-8.64Z"/>
+ <path class="st0"
d="M40.25,76.73v39.34c0,1.07.75,1.71,1.39,2.03.64.32,1.6.32,2.35-.43l19.83-19.83c.75-.75.75-2.03,0-2.88l-19.83-19.83c-.43-.43-1.07-.64-1.49-.64-.32,0-.64.11-.85.21-.64.32-1.39.96-1.39,2.03Z"/>
+ <path class="st1"
d="M126.61,113.08v-33.37h9.92c10.87,0,17.59,6.4,17.59,16.63s-6.72,16.63-17.59,16.63h-9.92v.11ZM131.94,108.29h4.8c7.36,0,12.05-4.69,12.05-11.83s-4.69-11.83-12.05-11.83h-4.8v23.67Z"/>
+ <path class="st1"
d="M177.89,113.62c-9.6,0-17.38-7.78-17.38-17.27s7.78-17.17,17.38-17.17,17.38,7.57,17.38,17.17c.11,9.7-7.57,17.27-17.38,17.27ZM177.89,84.08c-6.61,0-12.05,5.44-12.05,12.26s5.44,12.37,12.05,12.37,12.15-5.65,12.15-12.37-5.44-12.26-12.15-12.26Z"/>
+ <path class="st1" d="M244.42,79.71h-5.44v33.37h5.44v-33.37Z"/>
+ <path class="st1"
d="M264.57,113.62c-4.69,0-8.53-1.39-10.24-2.24v-4.9c2.35,1.07,6.08,2.35,10.24,2.35s7.14-1.92,7.14-4.8c0-3.2-3.52-4.58-7.14-5.86-5.76-2.13-10.13-4.16-10.13-9.7,0-6.82,6.18-9.28,11.52-9.28,4.05,0,7.25,1.07,8.74,1.6v4.8c-2.13-.85-5.33-1.81-8.85-1.81-4.05,0-5.97,2.13-5.97,4.26,0,2.88,3.09,3.94,6.72,5.22,6.29,2.24,11.09,4.48,11.09,10.45-.11,5.86-5.44,9.92-13.11,9.92Z"/>
+ <path class="st1"
d="M219.9,99.54l2.03-.85c2.77-1.17,5.97-4.26,5.97-9.06,0-5.97-4.37-9.92-10.98-9.92h-12.69v33.37h5.33v-28.68h6.72c4.05,0,6.18,2.99,6.18,5.86s-2.13,5.86-6.18,5.86h-2.88c-1.28.21-.64,1.28-.64,1.28l10.77,15.57h5.97l-9.6-13.43Z"/>
+</svg>
\ No newline at end of file
diff --git a/static/images/brand-assets/doris-logo-horizontal-primary.svg
b/static/images/brand-assets/doris-logo-horizontal-primary.svg
new file mode 100644
index 00000000000..e0929c6ab24
--- /dev/null
+++ b/static/images/brand-assets/doris-logo-horizontal-primary.svg
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg id="_图层_1" data-name="图层_1" xmlns="http://www.w3.org/2000/svg"
version="1.1" viewBox="0 0 317.94 192.81">
+ <!-- Generator: Adobe Illustrator 30.4.0, SVG Export Plug-In . SVG Version:
2.1.4 Build 226) -->
+ <defs>
+ <style>
+ .st0 {
+ fill: #0dbe85;
+ }
+
+ .st1 {
+ fill: #1d2434;
+ }
+ </style>
+ </defs>
+ <path class="st0"
d="M77.24,68.09l-8.85-8.85c-2.35-2.35-5.54-3.63-8.64-3.63-2.88,0-5.76,1.07-8,3.2-2.24,2.24-3.52,5.12-3.52,8.32s1.17,6.08,3.41,8.32l16.1,16.1c.64.64,1.81.64,2.56,0l6.93-6.93c.43-.53,7.78-8.85,0-16.53Z"/>
+ <path class="st0"
d="M91.85,82.27c-1.71-1.6-3.41-3.31-5.01-5.22l-.11-.11c0,.11-.11.32-.11.53-.64,3.84-2.45,7.25-5.44,10.24-9.38,9.28-18.87,18.87-28.04,28.04l-1.17,1.17c-2.13,2.13-3.31,4.37-3.63,6.61-.43,3.41.75,7.25,3.31,10.02,2.24,2.45,5.22,3.73,8.42,3.62,3.63.11,5.44-.43,8.1-2.98,10.66-10.45,21.32-21,29.43-29,3.84-3.84,4.69-10.02,2.03-14.29-2.24-3.31-5.01-5.97-7.78-8.64Z"/>
+ <path class="st0"
d="M40.25,76.73v39.34c0,1.07.75,1.71,1.39,2.03.64.32,1.6.32,2.35-.43l19.83-19.83c.75-.75.75-2.03,0-2.88l-19.83-19.83c-.43-.43-1.07-.64-1.49-.64-.32,0-.64.11-.85.21-.64.32-1.39.96-1.39,2.03Z"/>
+ <path class="st1"
d="M126.61,113.08v-33.37h9.92c10.87,0,17.59,6.4,17.59,16.63s-6.72,16.63-17.59,16.63h-9.92v.11ZM131.94,108.29h4.8c7.36,0,12.05-4.69,12.05-11.83s-4.69-11.83-12.05-11.83h-4.8v23.67Z"/>
+ <path class="st1"
d="M177.89,113.62c-9.6,0-17.38-7.78-17.38-17.27s7.78-17.17,17.38-17.17,17.38,7.57,17.38,17.17c.11,9.7-7.57,17.27-17.38,17.27ZM177.89,84.08c-6.61,0-12.05,5.44-12.05,12.26s5.44,12.37,12.05,12.37,12.15-5.65,12.15-12.37-5.44-12.26-12.15-12.26Z"/>
+ <path class="st1" d="M244.42,79.71h-5.44v33.37h5.44v-33.37Z"/>
+ <path class="st1"
d="M264.57,113.62c-4.69,0-8.53-1.39-10.24-2.24v-4.9c2.35,1.07,6.08,2.35,10.24,2.35s7.14-1.92,7.14-4.8c0-3.2-3.52-4.58-7.14-5.86-5.76-2.13-10.13-4.16-10.13-9.7,0-6.82,6.18-9.28,11.52-9.28,4.05,0,7.25,1.07,8.74,1.6v4.8c-2.13-.85-5.33-1.81-8.85-1.81-4.05,0-5.97,2.13-5.97,4.26,0,2.88,3.09,3.94,6.72,5.22,6.29,2.24,11.09,4.48,11.09,10.45-.11,5.86-5.44,9.92-13.11,9.92Z"/>
+ <path class="st1"
d="M219.9,99.54l2.03-.85c2.77-1.17,5.97-4.26,5.97-9.06,0-5.97-4.37-9.92-10.98-9.92h-12.69v33.37h5.33v-28.68h6.72c4.05,0,6.18,2.99,6.18,5.86s-2.13,5.86-6.18,5.86h-2.88c-1.28.21-.64,1.28-.64,1.28l10.77,15.57h5.97l-9.6-13.43Z"/>
+</svg>
\ No newline at end of file
diff --git a/static/images/brand-assets/doris-logo-horizontal-white.svg
b/static/images/brand-assets/doris-logo-horizontal-white.svg
new file mode 100644
index 00000000000..b62d6727555
--- /dev/null
+++ b/static/images/brand-assets/doris-logo-horizontal-white.svg
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg id="_图层_1" data-name="图层_1" xmlns="http://www.w3.org/2000/svg"
version="1.1" viewBox="0 0 317.94 192.81">
+ <!-- Generator: Adobe Illustrator 30.4.0, SVG Export Plug-In . SVG Version:
2.1.4 Build 226) -->
+ <defs>
+ <style>
+ .st0 {
+ fill: #fff;
+ }
+ </style>
+ </defs>
+ <path class="st0"
d="M77.24,68.09l-8.85-8.85c-2.35-2.35-5.54-3.63-8.64-3.63-2.88,0-5.76,1.07-8,3.2-2.24,2.24-3.52,5.12-3.52,8.32s1.17,6.08,3.41,8.32l16.1,16.1c.64.64,1.81.64,2.56,0l6.93-6.93c.43-.53,7.78-8.85,0-16.53Z"/>
+ <path class="st0"
d="M91.85,82.27c-1.71-1.6-3.41-3.31-5.01-5.22l-.11-.11c0,.11-.11.32-.11.53-.64,3.84-2.45,7.25-5.44,10.24-9.38,9.28-18.87,18.87-28.04,28.04l-1.17,1.17c-2.13,2.13-3.31,4.37-3.63,6.61-.43,3.41.75,7.25,3.31,10.02,2.24,2.45,5.22,3.73,8.42,3.62,3.63.11,5.44-.43,8.1-2.98,10.66-10.45,21.32-21,29.43-29,3.84-3.84,4.69-10.02,2.03-14.29-2.24-3.31-5.01-5.97-7.78-8.64Z"/>
+ <path class="st0"
d="M40.25,76.73v39.34c0,1.07.75,1.71,1.39,2.03.64.32,1.6.32,2.35-.43l19.83-19.83c.75-.75.75-2.03,0-2.88l-19.83-19.83c-.43-.43-1.07-.64-1.49-.64-.32,0-.64.11-.85.21-.64.32-1.39.96-1.39,2.03Z"/>
+ <path class="st0"
d="M126.61,113.08v-33.37h9.92c10.87,0,17.59,6.4,17.59,16.63s-6.72,16.63-17.59,16.63h-9.92v.11ZM131.94,108.29h4.8c7.36,0,12.05-4.69,12.05-11.83s-4.69-11.83-12.05-11.83h-4.8v23.67Z"/>
+ <path class="st0"
d="M177.89,113.62c-9.6,0-17.38-7.78-17.38-17.27s7.78-17.17,17.38-17.17,17.38,7.57,17.38,17.17c.11,9.7-7.57,17.27-17.38,17.27ZM177.89,84.08c-6.61,0-12.05,5.44-12.05,12.26s5.44,12.37,12.05,12.37,12.15-5.65,12.15-12.37-5.44-12.26-12.15-12.26Z"/>
+ <path class="st0" d="M244.42,79.71h-5.44v33.37h5.44v-33.37Z"/>
+ <path class="st0"
d="M264.57,113.62c-4.69,0-8.53-1.39-10.24-2.24v-4.9c2.35,1.07,6.08,2.35,10.24,2.35s7.14-1.92,7.14-4.8c0-3.2-3.52-4.58-7.14-5.86-5.76-2.13-10.13-4.16-10.13-9.7,0-6.82,6.18-9.28,11.52-9.28,4.05,0,7.25,1.07,8.74,1.6v4.8c-2.13-.85-5.33-1.81-8.85-1.81-4.05,0-5.97,2.13-5.97,4.26,0,2.88,3.09,3.94,6.72,5.22,6.29,2.24,11.09,4.48,11.09,10.45-.11,5.86-5.44,9.92-13.11,9.92Z"/>
+ <path class="st0"
d="M219.9,99.54l2.03-.85c2.77-1.17,5.97-4.26,5.97-9.06,0-5.97-4.37-9.92-10.98-9.92h-12.69v33.37h5.33v-28.68h6.72c4.05,0,6.18,2.99,6.18,5.86s-2.13,5.86-6.18,5.86h-2.88c-1.28.21-.64,1.28-.64,1.28l10.77,15.57h5.97l-9.6-13.43Z"/>
+</svg>
\ No newline at end of file
diff --git a/static/images/brand-assets/doris-logo-stacked-dark.svg
b/static/images/brand-assets/doris-logo-stacked-dark.svg
new file mode 100644
index 00000000000..c6fbf0f3f44
--- /dev/null
+++ b/static/images/brand-assets/doris-logo-stacked-dark.svg
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg id="_图层_1" data-name="图层_1" xmlns="http://www.w3.org/2000/svg"
version="1.1" viewBox="0 0 317.94 192.81">
+ <!-- Generator: Adobe Illustrator 30.4.0, SVG Export Plug-In . SVG Version:
2.1.4 Build 226) -->
+ <defs>
+ <style>
+ .st0 {
+ fill: #0dbe85;
+ }
+
+ .st1 {
+ fill: #fff;
+ }
+ </style>
+ </defs>
+ <path class="st0"
d="M165.61,45.51l-8.94-8.94c-2.4-2.4-5.56-3.61-8.68-3.61-2.91,0-5.78,1.05-7.98,3.17-2.28,2.2-3.55,5.15-3.58,8.31-.03,3.16,1.19,6.14,3.42,8.37l16.22,16.22c.68.68,1.87.68,2.55,0l6.98-6.98c.44-.48,7.75-8.8.01-16.54Z"/>
+ <path class="st0"
d="M180.26,59.79c-1.71-1.65-3.48-3.36-5.07-5.2-.02-.02-.04-.04-.05-.06-.04.11-.09.28-.13.51-.66,3.9-2.45,7.25-5.47,10.24-9.42,9.34-18.94,18.9-28.15,28.15l-1.22,1.23c-2.09,2.1-3.35,4.38-3.65,6.6-.47,3.46.79,7.3,3.28,10.02,2.27,2.48,5.27,3.77,8.43,3.62h.04c3.67.06,5.45-.43,8.13-3.04,10.76-10.48,21.43-21.05,29.52-29.08,3.83-3.8,4.71-10.1,2-14.33-2.09-3.28-4.92-6.01-7.66-8.65Z"/>
+ <path class="st0"
d="M128.45,54.19v39.49c0,1.08.7,1.75,1.35,2.03.66.27,1.63.29,2.39-.47l19.87-19.87c.78-.78.78-2.06,0-2.85l-19.87-19.87c-.47-.47-1.02-.64-1.53-.64-.31,0-.61.07-.86.17-.66.27-1.35.94-1.35,2.03Z"/>
+ <path class="st1"
d="M103.08,159.45v-24.69h7.33c8.03,0,13.03,4.73,13.03,12.34s-4.99,12.34-13.03,12.34h-7.33ZM107.02,155.91h3.54c5.42,0,8.92-3.45,8.92-8.8s-3.5-8.8-8.92-8.8h-3.54v17.6Z"/>
+ <path class="st1"
d="M141.07,159.85c-7.09,0-12.87-5.73-12.87-12.78s5.77-12.7,12.87-12.7,12.9,5.58,12.9,12.7-5.67,12.78-12.9,12.78ZM141.07,138.03c-4.92,0-8.92,4.06-8.92,9.04s4,9.12,8.92,9.12,8.96-4.18,8.96-9.12-4.02-9.04-8.96-9.04Z"/>
+ <path class="st1" d="M190.31,134.77h-4.06v24.68h4.06v-24.68Z"/>
+ <path class="st1"
d="M205.24,159.85c-3.48,0-6.32-1.07-7.57-1.62v-3.63c1.76.81,4.48,1.75,7.57,1.75s5.27-1.44,5.27-3.59c0-2.41-2.58-3.36-5.3-4.37-4.27-1.58-7.54-3.11-7.54-7.15,0-5.08,4.59-6.89,8.53-6.89,2.98,0,5.35.77,6.48,1.21l-.02,3.55c-1.57-.61-3.93-1.31-6.58-1.31-3.03,0-4.39,1.6-4.39,3.19-.03,2.09,2.28,2.93,4.95,3.89,4.65,1.68,8.21,3.32,8.21,7.74,0,4.24-3.95,7.2-9.61,7.2Z"/>
+ <path class="st1"
d="M172.12,149.47l1.54-.66c2.05-.88,4.45-3.17,4.45-6.71,0-4.45-3.21-7.33-8.17-7.33h-9.37v24.68h3.94v-21.18h4.99c3.01,0,4.59,2.19,4.59,4.35s-1.61,4.35-4.59,4.35h-2.09c-.93.13-.45.92-.45.92l7.97,11.56h4.46l-7.26-9.98Z"/>
+</svg>
\ No newline at end of file
diff --git a/static/images/brand-assets/doris-logo-stacked-primary.svg
b/static/images/brand-assets/doris-logo-stacked-primary.svg
new file mode 100644
index 00000000000..754bb1cd9e2
--- /dev/null
+++ b/static/images/brand-assets/doris-logo-stacked-primary.svg
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg id="_图层_1" data-name="图层_1" xmlns="http://www.w3.org/2000/svg"
version="1.1" viewBox="0 0 317.94 192.81">
+ <!-- Generator: Adobe Illustrator 30.4.0, SVG Export Plug-In . SVG Version:
2.1.4 Build 226) -->
+ <defs>
+ <style>
+ .st0 {
+ fill: #0dbe85;
+ }
+
+ .st1 {
+ fill: #1d2434;
+ }
+ </style>
+ </defs>
+ <path class="st0"
d="M165.61,45.51l-8.94-8.94c-2.4-2.4-5.56-3.61-8.68-3.61-2.91,0-5.78,1.05-7.98,3.17-2.28,2.2-3.55,5.15-3.58,8.31-.03,3.16,1.19,6.14,3.42,8.37l16.22,16.22c.68.68,1.87.68,2.55,0l6.98-6.98c.44-.48,7.75-8.8.01-16.54Z"/>
+ <path class="st0"
d="M180.26,59.79c-1.71-1.65-3.48-3.36-5.07-5.2-.02-.02-.04-.04-.05-.06-.04.11-.09.28-.13.51-.66,3.9-2.45,7.25-5.47,10.24-9.42,9.34-18.94,18.9-28.15,28.15l-1.22,1.23c-2.09,2.1-3.35,4.38-3.65,6.6-.47,3.46.79,7.3,3.28,10.02,2.27,2.48,5.27,3.77,8.43,3.62h.04c3.67.06,5.45-.43,8.13-3.04,10.76-10.48,21.43-21.05,29.52-29.08,3.83-3.8,4.71-10.1,2-14.33-2.09-3.28-4.92-6.01-7.66-8.65Z"/>
+ <path class="st0"
d="M128.45,54.19v39.49c0,1.08.7,1.75,1.35,2.03.66.27,1.63.29,2.39-.47l19.87-19.87c.78-.78.78-2.06,0-2.85l-19.87-19.87c-.47-.47-1.02-.64-1.53-.64-.31,0-.61.07-.86.17-.66.27-1.35.94-1.35,2.03Z"/>
+ <path class="st1"
d="M103.08,159.45v-24.69h7.33c8.03,0,13.03,4.73,13.03,12.34s-4.99,12.34-13.03,12.34h-7.33ZM107.02,155.91h3.54c5.42,0,8.92-3.45,8.92-8.8s-3.5-8.8-8.92-8.8h-3.54v17.6Z"/>
+ <path class="st1"
d="M141.07,159.85c-7.09,0-12.87-5.73-12.87-12.78s5.77-12.7,12.87-12.7,12.9,5.58,12.9,12.7-5.67,12.78-12.9,12.78ZM141.07,138.03c-4.92,0-8.92,4.06-8.92,9.04s4,9.12,8.92,9.12,8.96-4.18,8.96-9.12-4.02-9.04-8.96-9.04Z"/>
+ <path class="st1" d="M190.31,134.77h-4.06v24.68h4.06v-24.68Z"/>
+ <path class="st1"
d="M205.24,159.85c-3.48,0-6.32-1.07-7.57-1.62v-3.63c1.76.81,4.48,1.75,7.57,1.75s5.27-1.44,5.27-3.59c0-2.41-2.58-3.36-5.3-4.37-4.27-1.58-7.54-3.11-7.54-7.15,0-5.08,4.59-6.89,8.53-6.89,2.98,0,5.35.77,6.48,1.21l-.02,3.55c-1.57-.61-3.93-1.31-6.58-1.31-3.03,0-4.39,1.6-4.39,3.19-.03,2.09,2.28,2.93,4.95,3.89,4.65,1.68,8.21,3.32,8.21,7.74,0,4.24-3.95,7.2-9.61,7.2Z"/>
+ <path class="st1"
d="M172.12,149.47l1.54-.66c2.05-.88,4.45-3.17,4.45-6.71,0-4.45-3.21-7.33-8.17-7.33h-9.37v24.68h3.94v-21.18h4.99c3.01,0,4.59,2.19,4.59,4.35s-1.61,4.35-4.59,4.35h-2.09c-.93.13-.45.92-.45.92l7.97,11.56h4.46l-7.26-9.98Z"/>
+</svg>
\ No newline at end of file
diff --git a/static/images/brand-assets/doris-logo-stacked-white.svg
b/static/images/brand-assets/doris-logo-stacked-white.svg
new file mode 100644
index 00000000000..256674b925b
--- /dev/null
+++ b/static/images/brand-assets/doris-logo-stacked-white.svg
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg id="_图层_1" data-name="图层_1" xmlns="http://www.w3.org/2000/svg"
version="1.1" viewBox="0 0 317.94 192.81">
+ <!-- Generator: Adobe Illustrator 30.4.0, SVG Export Plug-In . SVG Version:
2.1.4 Build 226) -->
+ <defs>
+ <style>
+ .st0 {
+ fill: #fff;
+ }
+ </style>
+ </defs>
+ <path class="st0"
d="M165.61,45.51l-8.94-8.94c-2.4-2.4-5.56-3.61-8.68-3.61-2.91,0-5.78,1.05-7.98,3.17-2.28,2.2-3.55,5.15-3.58,8.31-.03,3.16,1.19,6.14,3.42,8.37l16.22,16.22c.68.68,1.87.68,2.55,0l6.98-6.98c.44-.48,7.75-8.8.01-16.54Z"/>
+ <path class="st0"
d="M180.26,59.79c-1.71-1.65-3.48-3.36-5.07-5.2-.02-.02-.04-.04-.05-.06-.04.11-.09.28-.13.51-.66,3.9-2.45,7.25-5.47,10.24-9.42,9.34-18.94,18.9-28.15,28.15l-1.22,1.23c-2.09,2.1-3.35,4.38-3.65,6.6-.47,3.46.79,7.3,3.28,10.02,2.27,2.48,5.27,3.77,8.43,3.62h.04c3.67.06,5.45-.43,8.13-3.04,10.76-10.48,21.43-21.05,29.52-29.08,3.83-3.8,4.71-10.1,2-14.33-2.09-3.28-4.92-6.01-7.66-8.65Z"/>
+ <path class="st0"
d="M128.45,54.19v39.49c0,1.08.7,1.75,1.35,2.03.66.27,1.63.29,2.39-.47l19.87-19.87c.78-.78.78-2.06,0-2.85l-19.87-19.87c-.47-.47-1.02-.64-1.53-.64-.31,0-.61.07-.86.17-.66.27-1.35.94-1.35,2.03Z"/>
+ <path class="st0"
d="M103.08,159.45v-24.69h7.33c8.03,0,13.03,4.73,13.03,12.34s-4.99,12.34-13.03,12.34h-7.33ZM107.02,155.91h3.54c5.42,0,8.92-3.45,8.92-8.8s-3.5-8.8-8.92-8.8h-3.54v17.6Z"/>
+ <path class="st0"
d="M141.07,159.85c-7.09,0-12.87-5.73-12.87-12.78s5.77-12.7,12.87-12.7,12.9,5.58,12.9,12.7-5.67,12.78-12.9,12.78ZM141.07,138.03c-4.92,0-8.92,4.06-8.92,9.04s4,9.12,8.92,9.12,8.96-4.18,8.96-9.12-4.02-9.04-8.96-9.04Z"/>
+ <path class="st0" d="M190.31,134.77h-4.06v24.68h4.06v-24.68Z"/>
+ <path class="st0"
d="M205.24,159.85c-3.48,0-6.32-1.07-7.57-1.62v-3.63c1.76.81,4.48,1.75,7.57,1.75s5.27-1.44,5.27-3.59c0-2.41-2.58-3.36-5.3-4.37-4.27-1.58-7.54-3.11-7.54-7.15,0-5.08,4.59-6.89,8.53-6.89,2.98,0,5.35.77,6.48,1.21l-.02,3.55c-1.57-.61-3.93-1.31-6.58-1.31-3.03,0-4.39,1.6-4.39,3.19-.03,2.09,2.28,2.93,4.95,3.89,4.65,1.68,8.21,3.32,8.21,7.74,0,4.24-3.95,7.2-9.61,7.2Z"/>
+ <path class="st0"
d="M172.12,149.47l1.54-.66c2.05-.88,4.45-3.17,4.45-6.71,0-4.45-3.21-7.33-8.17-7.33h-9.37v24.68h3.94v-21.18h4.99c3.01,0,4.59,2.19,4.59,4.35s-1.61,4.35-4.59,4.35h-2.09c-.93.13-.45.92-.45.92l7.97,11.56h4.46l-7.26-9.98Z"/>
+</svg>
\ No newline at end of file
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]