docs: Restyle documentation landing page and community page (#24393)

This commit is contained in:
Thiago Rossener 2023-06-15 12:57:37 -03:00 committed by GitHub
parent fa82ee1947
commit 892de8a232
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
46 changed files with 1583 additions and 644 deletions

View File

@ -32,7 +32,7 @@ const config = {
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'throw',
favicon: 'img/favicon.ico',
favicon: '/img/favicon.ico',
organizationName: 'apache', // Usually your GitHub org/user name.
projectName: 'superset', // Usually your repo name.
themes: ['@saucelabs/theme-github-codeblock'],
@ -177,8 +177,8 @@ const config = {
navbar: {
logo: {
alt: 'Superset Logo',
src: 'img/superset-logo-horiz.svg',
srcDark: 'img/superset-logo-horiz-dark.svg',
src: '/img/superset-logo-horiz.svg',
srcDark: '/img/superset-logo-horiz-dark.svg',
},
items: [
{
@ -219,28 +219,40 @@ const config = {
},
],
},
{
href: '/docs/intro',
position: 'right',
className: 'default-button-theme get-started-button',
label: 'Get Started',
},
{
href: 'https://github.com/apache/superset',
position: 'right',
class: 'github-logo-container',
className: 'github-button',
},
],
},
footer: {
style: 'dark',
links: [],
copyright: `Copyright © ${new Date().getFullYear()},
The <a href="https://www.apache.org/" target="_blank" rel="noreferrer">Apache Software Foundation</a>,
Licensed under the Apache <a href="https://apache.org/licenses/LICENSE-2.0" target="_blank" rel="noreferrer">License</a>. <br/>
<small>Apache Superset, Apache, Superset, the Superset logo, and the Apache feather logo are either registered trademarks or trademarks of The Apache Software Foundation. All other products or name brands are trademarks of their respective holders, including The Apache Software Foundation.
<a href="https://www.apache.org/" target="_blank">Apache Software Foundation</a> resources</small><br />
<small>
<a href="https://www.apache.org/security/" target="_blank" rel="noreferrer">Security</a>&nbsp;|&nbsp;
<a href="https://www.apache.org/foundation/sponsorship.html" target="_blank" rel="noreferrer">Donate</a>&nbsp;|&nbsp;
<a href="https://www.apache.org/foundation/thanks.html" target="_blank" rel="noreferrer">Thanks</a>&nbsp;|&nbsp;
<a href="https://apache.org/events/current-event" target="_blank" rel="noreferrer">Events</a>&nbsp;|&nbsp;
<a href="https://apache.org/licenses/" target="_blank" rel="noreferrer">License</a>
</small>`,
copyright: `
<div class="footer__applitools">
We use &nbsp;<a href="https://applitools.com/" target="_blank" rel="nofollow"><img src="/img/applitools.png" title="Applitools" /></a>
</div>
<p>Copyright © ${new Date().getFullYear()},
The <a href="https://www.apache.org/" target="_blank" rel="noreferrer">Apache Software Foundation</a>,
Licensed under the Apache <a href="https://apache.org/licenses/LICENSE-2.0" target="_blank" rel="noreferrer">License</a>.</p>
<p><small>Apache Superset, Apache, Superset, the Superset logo, and the Apache feather logo are either registered trademarks or trademarks of The Apache Software Foundation. All other products or name brands are trademarks of their respective holders, including The Apache Software Foundation.
<a href="https://www.apache.org/" target="_blank">Apache Software Foundation</a> resources</small></p>
<img class="footer__divider" src="/img/community/line.png" alt="Divider" />
<p>
<small>
<a href="https://www.apache.org/security/" target="_blank" rel="noreferrer">Security</a>&nbsp;|&nbsp;
<a href="https://www.apache.org/foundation/sponsorship.html" target="_blank" rel="noreferrer">Donate</a>&nbsp;|&nbsp;
<a href="https://www.apache.org/foundation/thanks.html" target="_blank" rel="noreferrer">Thanks</a>&nbsp;|&nbsp;
<a href="https://apache.org/events/current-event" target="_blank" rel="noreferrer">Events</a>&nbsp;|&nbsp;
<a href="https://apache.org/licenses/" target="_blank" rel="noreferrer">License</a>
</small>
</p>`,
},
prism: {
theme: lightCodeTheme,
@ -250,8 +262,7 @@ const config = {
scripts: [
'/script/matomo.js',
{
src:
'https://www.bugherd.com/sidebarv2.js?apikey=enilpiu7bgexxsnoqfjtxa',
src: 'https://www.bugherd.com/sidebarv2.js?apikey=enilpiu7bgexxsnoqfjtxa',
async: true,
},
],

View File

@ -0,0 +1,53 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import React, { ReactNode } from 'react';
import styled from '@emotion/styled';
import { mq } from '../utils';
const StyledBlurredSection = styled('section')`
text-align: center;
border-bottom: 1px solid var(--ifm-border-color);
overflow: hidden;
.blur {
max-width: 635px;
width: 100%;
margin-top: -70px;
margin-bottom: -35px;
position: relative;
z-index: -1;
${mq[1]} {
margin-top: -40px;
}
}
`;
interface BlurredSectionProps {
children: ReactNode;
}
const BlurredSection = ({ children }: BlurredSectionProps) => {
return (
<StyledBlurredSection>
{children}
<img className="blur" src="/img/community/blur.png" alt="Blur" />
</StyledBlurredSection>
);
};
export default BlurredSection;

View File

@ -0,0 +1,123 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import React from 'react';
import styled from '@emotion/styled';
import { mq } from '../utils';
type StyledSectionHeaderProps = {
dark: boolean;
};
const StyledSectionHeader = styled('div')<StyledSectionHeaderProps>`
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 75px 20px 0;
max-width: 720px;
margin: 0 auto;
${mq[1]} {
padding-top: 55px;
}
.title,
.subtitle {
color: ${props =>
props.dark
? 'var(--ifm-font-base-color-inverse)'
: 'var(--ifm-font-base-color)'};
}
`;
const StyledSectionHeaderH1 = styled(StyledSectionHeader)`
.title {
font-size: 96px;
${mq[1]} {
font-size: 46px;
}
}
.line {
margin-top: -45px;
margin-bottom: 15px;
${mq[1]} {
margin-top: -20px;
margin-bottom: 30px;
}
}
.subtitle {
font-size: 30px;
line-height: 40px;
${mq[1]} {
font-size: 25px;
line-height: 29px;
}
}
`;
const StyledSectionHeaderH2 = styled(StyledSectionHeader)`
.title {
font-size: 48px;
${mq[1]} {
font-size: 34px;
}
}
.line {
margin-top: -15px;
margin-bottom: 15px;
${mq[1]} {
margin-top: -5px;
}
}
.subtitle {
font-size: 24px;
line-height: 32px;
${mq[1]} {
font-size: 18px;
line-height: 26px;
}
}
`;
interface SectionHeaderProps {
level: any;
title: string;
subtitle?: string;
dark?: boolean;
}
const SectionHeader = ({
level,
title,
subtitle,
dark,
}: SectionHeaderProps) => {
const Heading = level;
const StyledRoot =
level === 'h1' ? StyledSectionHeaderH1 : StyledSectionHeaderH2;
return (
<StyledRoot dark={!!dark}>
<Heading className="title">{title}</Heading>
<img className="line" src="/img/community/line.png" alt="line" />
{subtitle && <p className="subtitle">{subtitle}</p>}
</StyledRoot>
);
};
export default SectionHeader;

View File

@ -20,103 +20,211 @@ import React from 'react';
import styled from '@emotion/styled';
import { List } from 'antd';
import Layout from '@theme/Layout';
import { mq } from '../utils';
import SectionHeader from '../components/SectionHeader';
import BlurredSection from '../components/BlurredSection';
const links = [
[
'http://bit.ly/join-superset-slack',
'Slack',
'interact with other Superset users and community members',
],
[
'https://github.com/apache/superset',
'GitHub',
'create tickets to report issues, report bugs, and suggest new features',
],
[
'https://lists.apache.org/list.html?dev@superset.apache.org',
'dev@ Mailing List',
'participate in conversations with committers and contributors',
],
[
'https://calendar.google.com/calendar/u/2?cid=c3VwZXJzZXQuY29tbWl0dGVyc0BnbWFpbC5jb20',
'Superset Community Calendar',
'join us for working group sessions and other community gatherings',
],
[
'https://stackoverflow.com/questions/tagged/superset+apache-superset',
'Stack Overflow',
'our growing knowledge base',
],
[
'https://www.meetup.com/Global-Apache-Superset-Community-Meetup/',
'Superset Meetup Group',
'join our monthly virtual meetups and register for any upcoming events',
],
[
'https://github.com/apache/superset/blob/master/RESOURCES/INTHEWILD.md',
'Organizations',
'a list of some of the organizations using Superset in production',
],
[
'https://github.com/apache-superset/awesome-apache-superset',
'Contributors Guide',
'Interested in contributing? Learn how to contribute and best practices',
],
const communityLinks = [
{
url: 'http://bit.ly/join-superset-slack',
title: 'Slack',
description: 'Interact with other Superset users and community members.',
image: 'slack-symbol.jpg',
ariaLabel:
'Interact with other Superset users and community members on Slack',
},
{
url: 'https://github.com/apache/superset',
title: 'GitHub',
description:
'Create tickets to report issues, report bugs, and suggest new features.',
image: 'github-symbol.jpg',
ariaLabel:
'Create tickets to report issues, report bugs, and suggest new features on Superset GitHub repo',
},
{
url: 'https://lists.apache.org/list.html?dev@superset.apache.org',
title: 'dev@ Mailing List',
description:
'Participate in conversations with committers and contributors.',
image: 'email-symbol.png',
ariaLabel:
'Participate in conversations with committers and contributors on Superset mailing list',
},
{
url: 'https://stackoverflow.com/questions/tagged/superset+apache-superset',
title: 'Stack Overflow',
description: 'Our growing knowledge base.',
image: 'stackoverflow-symbol.jpg',
ariaLabel: 'See Superset issues on Stack Overflow',
},
{
url: 'https://www.meetup.com/Global-Apache-Superset-Community-Meetup/',
title: 'Superset Meetup Group',
description:
'Join our monthly virtual meetups and register for any upcoming events.',
image: 'coffee-symbol.png',
ariaLabel:
'Join our monthly virtual meetups and register for any upcoming events on Meetup',
},
{
url: 'https://github.com/apache/superset/blob/master/RESOURCES/INTHEWILD.md',
title: 'Organizations',
description:
'A list of some of the organizations using Superset in production.',
image: 'note-symbol.png',
ariaLabel: 'See a list of the organizations using Superset in production',
},
{
url: 'https://github.com/apache-superset/awesome-apache-superset',
title: 'Contributors Guide',
description:
'Interested in contributing? Learn how to contribute and best practices.',
image: 'writing-symbol.png',
ariaLabel: 'Learn how to contribute and best practices on Superset GitHub',
},
];
const StyledMain = styled('main')`
padding-bottom: 60px;
padding-left: 16px;
padding-right: 16px;
section {
width: 100%;
max-width: 800px;
const StyledJoinCommunity = styled('section')`
background-color: var(--ifm-off-section-background);
border-bottom: 1px solid var(--ifm-border-color);
.list {
max-width: 540px;
margin: 0 auto;
padding: 60px 0 0 0;
font-size: 17px;
&:first-of-type{
padding: 40px;
background-image: linear-gradient(120deg, #d6f2f8, #52c6e3);
border-radius: 0 0 10px;
padding: 40px 20px 20px 35px;
}
.item {
padding: 0;
border: 0;
}
.icon {
width: 40px;
margin-top: 5px;
${mq[1]} {
width: 40px;
margin-top: 0;
}
}
.title {
font-size: 20px;
line-height: 36px;
font-weight: 700;
color: var(--ifm-font-base-color);
${mq[1]} {
font-size: 23px;
line-height: 26px;
}
}
.description {
font-size: 14px;
line-height: 20px;
color: var(--ifm-secondary-text);
margin-top: -8px;
margin-bottom: 23px;
${mq[1]} {
font-size: 17px;
line-height: 22px;
color: var(--ifm-primary-text);
margin-bottom: 35px;
margin-top: 0;
}
}
`;
const StyledGetInvolved = styled('div')`
margin-bottom: 25px;
const StyledCalendarIframe = styled('iframe')`
display: block;
margin: 20px auto 30px;
max-width: 800px;
width: 100%;
height: 600px;
border: 0;
${mq[1]} {
width: calc(100% - 40px);
}
`;
const StyledNewsletterIframe = styled('iframe')`
display: block;
max-width: 1080px;
width: calc(100% - 40px);
height: 285px;
margin: 30px auto 20px;
border: 0;
@media (max-width: 1200px) {
height: 380px;
}
@media (max-width: 679px) {
height: 680px;
margin-top: 15px;
}
`;
const Community = () => {
return (
<Layout
title="Community"
description="Community website for Apache Superset, a data visualization and data exploration platform"
description="Community website for Apache Superset, a data visualization and data exploration platform"
>
<StyledMain>
<section>
<h1 className="title">Community</h1>
Get involved in our welcoming, fast growing community!
</section>
<section className="joinCommunity">
<StyledGetInvolved>
<h2>Get involved!</h2>
<List
size="small"
bordered
dataSource={links}
renderItem={([href, link, post]) => (
<List.Item>
<a href={href}>{link}</a>
{' '}
-
{' '}
{post}
</List.Item>
)}
/>
</StyledGetInvolved>
</section>
</StyledMain>
<main>
<BlurredSection>
<SectionHeader
level="h1"
title="Community"
subtitle="Get involved in our welcoming, fast growing community!"
/>
</BlurredSection>
<StyledJoinCommunity>
<List
className="list"
itemLayout="horizontal"
dataSource={communityLinks}
renderItem={({ url, title, description, image, ariaLabel }) => (
<List.Item className="item">
<List.Item.Meta
avatar={
<a
className="title"
href={url}
target="_blank"
aria-label={ariaLabel}
>
<img className="icon" src={`/img/community/${image}`} />
</a>
}
title={
<a className="title" href={url} target="_blank">
{title}
</a>
}
description={<p className="description">{description}</p>}
role="group"
aria-label="Community link"
/>
</List.Item>
)}
/>
</StyledJoinCommunity>
<BlurredSection>
<SectionHeader
level="h2"
title="Superset Community Calendar"
subtitle="Join us for live demos, meetups, discussions, and more!"
/>
<StyledCalendarIframe
src="https://calendar.google.com/calendar/embed?src=superset.committers%40gmail.com&ctz=America%2FLos_Angeles"
frameBorder="0"
scrolling="no"
/>
</BlurredSection>
<BlurredSection>
<SectionHeader level="h2" title="Newsletter Archive" />
<StyledNewsletterIframe
src="https://preset.io/embed/newsletter/"
frameBorder="0"
scrolling="no"
/>
</BlurredSection>
</main>
</Layout>
);
};

File diff suppressed because it is too large Load Diff

View File

@ -18,10 +18,35 @@
*/
export const Databases = [
{
title: 'PostgreSQL',
href: 'https://www.postgresql.org/',
imgName: 'postgresql.svg',
},
{
title: 'BigQuery',
href: 'https://cloud.google.com/bigquery/',
imgName: 'google-big-query.svg',
},
{
title: 'Snowflake',
href: 'https://www.snowflake.com/',
imgName: 'snowflake.svg',
},
{
title: 'MySQL',
href: 'https://www.mysql.com/',
imgName: 'mysql.jpg',
},
{
title: 'Amazon Redshift',
href: 'https://aws.amazon.com/redshift/',
imgName: 'aws-redshift.png',
imgName: 'amazon-redshift.jpg',
},
{
title: 'Amazon Athena',
href: 'https://aws.amazon.com/pt/athena/',
imgName: 'amazon-athena.jpg',
},
{
title: 'Apache Druid',
@ -29,133 +54,67 @@ export const Databases = [
imgName: 'druid.png',
},
{
title: 'Apache Kylin',
href: 'http://kylin.apache.org/',
imgName: 'apache-kylin.png',
title: 'Databricks',
href: 'https://www.databricks.com',
imgName: 'databricks.png',
},
{
title: 'BigQuery',
href: 'https://cloud.google.com/bigquery/',
imgName: 'googleBQ.png',
title: 'Google Sheets',
href: 'https://www.google.com/sheets/about/',
imgName: 'google-sheets.svg',
},
{
title: 'CSV',
imgName: 'csv.svg',
},
{
title: 'ClickHouse',
href: 'https://clickhouse.tech/',
imgName: 'clickhouse.png',
},
{
title: 'Rockset',
href: 'https://rockset.com/',
imgName: 'rockset.png',
},
{
title: 'Dremio',
href: 'https://dremio.com/',
imgName: 'dremio.png',
},
{
title: 'Databricks',
href: 'https://www.databricks.com',
imgName: 'databricks.png',
},
{
title: 'Exasol',
href: 'https://www.exasol.com/en/',
imgName: 'exasol.png',
},
{
title: 'FireBirdSql',
href: 'https://firebirdsql.org/',
imgName: 'firebird.png',
},
{
title: 'Green Plum',
href: 'https://greenplum.org/',
imgName: 'greenplum.png',
},
{
title: 'IBM Db2',
href: 'https://www.ibm.com/analytics/db2',
imgName: 'ibmdb2.png',
},
{
title: 'MySQL',
href: 'https://www.mysql.com/',
imgName: 'mysql.png',
},
{
title: 'Microsoft SqlServer',
href: 'https://www.microsoft.com/en-us/sql-server',
imgName: 'msql.png',
},
{
title: 'MonetDB',
href: 'https://www.monetdb.org/',
imgName: 'monet.png',
},
{
title: 'Oracle',
href: 'https://www.oracle.com/database/',
imgName: 'oraclelogo.png',
},
{
title: 'PostgresSQL',
href: 'https://www.postgresql.org/',
imgName: 'postsql.png',
},
{
title: 'Presto',
href: 'https://prestodb.io/',
imgName: 'presto-og.png',
},
{
title: 'Snowflake',
href: 'https://www.snowflake.com/',
imgName: 'snowflake.png',
},
{
title: 'SQLite',
href: 'https://www.sqlite.org/index.html',
imgName: 'sqlite.png',
},
{
title: 'Trino',
href: 'https://trino.io/',
imgName: 'trino2.jpg',
},
{
title: 'Rockset',
href: 'https://rockset.com/',
imgName: 'rockset.png',
title: 'Oracle',
href: 'https://www.oracle.com/database/',
imgName: 'oraclelogo.png',
},
{
title: 'Vertica',
href: 'https://www.vertica.com/',
imgName: 'vertica.png',
title: 'Apache Pinot',
href: 'https://pinot.apache.org/',
imgName: 'apache-pinot.svg',
},
{
title: 'Hologres',
href: 'https://www.alibabacloud.com/product/hologres',
imgName: 'hologres.png',
title: 'Presto',
href: 'https://prestodb.io/',
imgName: 'presto-og.png',
},
{
title: 'IBM Netezza Performance Server',
href: 'https://www.ibm.com/products/netezza',
imgName: 'netezza.png',
title: 'IBM Db2',
href: 'https://www.ibm.com/analytics/db2',
imgName: 'ibmdb2.png',
},
{
title: 'Teradata',
href: "www.teradata.com",
imgName: 'teradata.png'
title: 'SAP Hana',
href: 'https://www.sap.com/products/technology-platform/hana.html',
imgName: 'sap-hana.jpg',
},
{
title: 'TimescaleDB',
href: "www.timescale.com",
imgName: 'timescale.png'
title: 'Microsoft SqlServer',
href: 'https://www.microsoft.com/en-us/sql-server',
imgName: 'msql.png',
},
{
title: 'YugabyteDB',
href: "www.yugabyte.com",
imgName: 'yugabyte.png'
},
{
title: 'StarRocks',
href: "www.starrocks.io",
imgName: 'starrocks.png'
}
];

View File

@ -24,7 +24,7 @@
*/
/* You can override the default Infima variables here. */
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
:root {
--ifm-color-primary: #20a7c9;
@ -34,80 +34,17 @@
--ifm-color-primary-light: #79cade;
--ifm-color-primary-lighter: #a5dbe9;
--ifm-color-primary-lightest: #d2edf4;
--ifm-font-base-color: #484848;
--ifm-font-base-color-inverse: #ffffff;
--ifm-code-font-size: 95%;
--ifm-menu-link-padding-vertical: 12px;
--doc-sidebar-width: 350px !important;
--ifm-navbar-height: none;
--ifm-font-family-base: Inter;
}
body {
font-family: Inter !important;
}
.DocSearch-Button .DocSearch-Button-Key {
display: none;
}
.github-logo-container {
background-image: url('/img/github.png');
background-size: contain;
width: 30px;
height: 30px;
}
.theme-doc-toc-desktop {
position: fixed !important;
}
.docusaurus-highlight-code-line {
background-color: rgba(0, 0, 0, 0.1);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
html[data-theme='dark'] .docusaurus-highlight-code-line {
background-color: rgba(0, 0, 0, 0.3);
}
.navbar__logo {
height: 40px;
}
.navbar-sidebar__brand {
padding-left: 0;
}
.menu,
.navbar {
font-size: 14px;
font-weight: 400;
}
/* Hacks to disable Swagger UI's "try it out" interactive mode */
.try-out,
.auth-wrapper,
.information-container {
display: none !important;
}
.swagger-ui table td,
.swagger-ui table th,
.swagger-ui table tr {
border: none;
}
.markdown h2:first-child {
margin-top: 0.5em;
}
@media only screen and (min-width: 800px) {
.navbar__logo {
height: 50px;
}
.navbar {
padding-left: 0;
}
}
a > span > svg {
display: none;
--ifm-font-family-base: Roboto;
--ifm-footer-background-color: #173036;
--ifm-footer-color: #87939a;
--ifm-off-section-background: #fbfbfb;
--ifm-border-color: #ededed;
--ifm-primary-text: #484848;
--ifm-secondary-text: #5f5f5f;
}

View File

@ -19,3 +19,242 @@
@import '~antd/lib/style/themes/default.less';
@import '~antd/dist/antd.less'; // Import Ant Design styles by less entry
@import 'antd-theme.less';
body {
font-family: var(--ifm-font-family-base);
color: var(--ifm-font-base-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--ifm-font-base-color);
font-weight: var(--ifm-heading-font-weight);
}
.under-navbar {
margin-top: -67px;
}
.theme-doc-toc-desktop {
position: fixed !important;
}
.docusaurus-highlight-code-line {
background-color: rgba(0, 0, 0, 0.1);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
html[data-theme='dark'] .docusaurus-highlight-code-line {
background-color: rgba(0, 0, 0, 0.3);
}
.menu {
font-size: 14px;
font-weight: 400;
}
/* Hacks to disable Swagger UI's "try it out" interactive mode */
.try-out,
.auth-wrapper,
.information-container {
display: none !important;
}
.swagger-ui table td,
.swagger-ui table th,
.swagger-ui table tr {
border: none;
}
.markdown h2:first-child {
margin-top: 0.5em;
}
a > span > svg {
display: none;
}
/* Default button */
.default-button-theme {
display: block;
background: linear-gradient(180deg, #20a7c9 0%, #0c8fae 100%);
color: #ffffff;
text-align: center;
position: relative;
z-index: 2;
&::before {
border-radius: inherit;
background: linear-gradient(180deg, #11b0d8 0%, #116f86 100%);
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
opacity: 0;
width: 100%;
z-index: -1;
transition: all 0.3s;
}
&:hover {
color: #ffffff;
&::before {
opacity: 1;
}
}
}
/* Navbar */
.navbar {
font-size: 14px;
font-weight: 400;
background-color: #fff;
.get-started-button {
border-radius: 10px;
font-size: 18px;
font-weight: bold;
width: 142px;
padding: 7px 0;
margin-right: 20px;
}
.github-button {
background-image: url('/img/github.png');
background-size: contain;
width: 30px;
height: 30px;
margin-right: 10px;
}
}
.navbar--dark {
background-color: transparent;
border-bottom: 1px solid rgba(24, 115, 132, 0.4);
.github-button {
background-image: url('/img/github-dark.png');
}
}
.navbar__logo {
height: 50px;
}
.dropdown > .navbar__link::after {
display: none;
}
.navbar-sidebar__brand {
padding-left: 0;
}
@media only screen and (max-width: 996px) {
.navbar {
padding-right: 8px;
padding-left: 8px;
.get-started-button,
.github-button {
display: none;
}
}
.navbar__items {
flex-direction: row-reverse;
justify-content: space-between;
}
.navbar__logo {
height: 48px;
}
}
/* Sidebar */
.navbar-sidebar {
left: auto;
right: 0;
transform: translate3d(100%, 0, 0);
}
/* Search Bar */
.navbar .DocSearch {
--docsearch-text-color: #187384;
--docsearch-muted-color: #187384;
--docsearch-searchbox-background: #fff;
border: 1px solid #187384;
border-radius: 10px;
&.DocSearch-Button {
width: 225px;
}
.DocSearch-Search-Icon {
width: 16px;
height: 16px;
}
.DocSearch-Button-Key,
.DocSearch-Button-Placeholder {
display: none;
}
}
.navbar--dark .DocSearch {
--docsearch-searchbox-background: #1d3d46;
}
@media only screen and (max-width: 996px) {
.navbar .DocSearch.DocSearch-Button {
display: none;
}
}
/* Footer */
.footer {
position: relative;
padding-top: 90px;
font-size: 15px;
}
.footer__applitools {
background-color: #0d3e49;
color: #e1e1e1;
position: absolute;
top: 0;
left: 0;
width: 100%;
padding: 16px 0;
img {
height: 34px;
}
}
.footer__divider {
margin: 10px auto 25px;
}
.footer small {
font-size: 13px;
display: block;
margin: 0 auto;
max-width: 830px;
}
@media only screen and (max-width: 996px) {
.footer__applitools img {
height: 28px;
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 36 KiB

3
docs/static/img/check-icon.svg vendored Normal file
View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 0C4.4775 0 0 4.4775 0 10C0 15.5225 4.4775 20 10 20C15.5225 20 20 15.5225 20 10C20 4.4775 15.5225 0 10 0ZM14.65 8.29125L9.5775 13.3625C9.11 13.83 8.35375 13.83 7.88625 13.3625L5.35 10.8275C4.8825 10.3612 4.8825 9.60375 5.35 9.13625C5.8175 8.66875 6.57375 8.66875 7.04125 9.13625L8.7325 10.8275L12.96 6.6C13.4275 6.1325 14.1837 6.1325 14.6512 6.6C15.1187 7.0675 15.1175 7.82375 14.65 8.29125Z" fill="#20A7C9"/>
</svg>

After

Width:  |  Height:  |  Size: 565 B

BIN
docs/static/img/community/blur.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
docs/static/img/community/line.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 898 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="512" height="270" viewBox="0 0 512 270">
<g id="Page-1">
<path id="Path" d="M108.65,67.02c-1.34,1.34-1.42,2.85-.18,4.41,1.83,2.36,4.85,1.02,4.85-2.09s-2.63-4.41-4.68-2.32Z"/>
<path id="Path-2" data-name="Path" d="M85.98,75.08c-1.74,1.74-1.25,4.72,.94,5.57,2.63,.98,4.99-3.25,2.98-5.43-.94-1.02-2.98-1.11-3.92-.13Z"/>
<path id="Path-3" data-name="Path" d="M108.51,79.09c-.98,.67-.98,.76-.98,13.67,0,14.43-.09,15.01-2.67,15.01-2.45,0-2.67-.71-2.67-8.28,0-6.81,0-6.9-1.16-8.01-.85-.89-1.38-1.07-2.32-.85-2.36,.58-2.32,.22-2.32,15.14v13.89l2.49-1.29c2.09-1.02,3.12-1.25,5.79-1.25,6.28,0,10.95,3.7,12.47,9.88,.67,2.63,.67,3.12,0,5.7-1.2,4.63-4.59,8.24-8.91,9.39-2.85,.76-6.95,.31-9.57-1.02l-2.27-1.2v6.46c0,6.28-.04,6.5-1.11,7.52-.58,.62-1.38,1.11-1.78,1.11s-1.2-.49-1.78-1.11l-1.11-1.07V86.97l-1.11-.49c-1.2-.53-2.23-.36-3.43,.71-.62,.49-.8,1.38-.8,3.52v2.81h-10.29l-.8,1.87c-.8,1.96-7.7,26.4-9.48,33.53-.76,3.16-.94,5.3-.94,10.24,0,7.26,.85,11.13,3.65,16.92,4.01,8.33,9.66,13.71,19.9,18.83,5.57,2.81,6.81,3.83,8.37,6.99,1.65,3.38,2.36,7.04,2.98,15.5,.45,5.92,.4,7.17-.09,7.61-.36,.31-4.63,1.83-9.53,3.34-4.9,1.56-8.99,2.89-9.08,2.98-.09,.09,9.31,.18,20.93,.13,12.47,0,20.66-.18,19.99-.4-.62-.22-4.99-1.65-9.75-3.12l-8.64-2.76,.27-6.32c.31-7.39,.85-11.04,2.18-14.87,1.51-4.32,3.12-5.83,9.53-9.08,12.02-6.06,18.88-13.27,22-23.29,1.42-4.45,1.69-12.65,.67-19.15-1.42-9.22-9.31-37.36-10.78-38.38-.49-.4-2.67-.58-6.9-.58h-6.14v-6.68c0-6.1-.09-6.77-.89-7.57-1.07-1.07-2.54-1.16-3.92-.18Z"/>
<path id="Path-4" data-name="Path" d="M97.16,79.62c-1.02,1.11-.98,3.78,.04,4.68,.85,.8,2.63,.98,3.47,.4,.89-.58,1.6-2.4,1.34-3.43-.58-2.36-3.38-3.29-4.85-1.65Z"/>
<path id="Path-5" data-name="Path" d="M101.3,123.88c-2.45,1.69-3.34,3.25-3.34,5.92,0,3.78,2.49,6.46,6.32,6.77,4.05,.31,7.26-2.76,7.26-6.99,0-5.17-6.1-8.5-10.24-5.7Z"/>
<path id="Path-6" data-name="Path" d="M245.9,93.12c-2.99,1.57-4.49,4.01-4.76,7.53-.22,3.52,1.05,5.91,4.27,8.02,2.66,1.79,7.37,1.73,10.08-.05,5.26-3.47,5.15-11.27-.17-15.12-2.16-1.57-6.81-1.79-9.42-.38Z"/>
<polygon id="Path-7" data-name="Path" points="421.11 115.18 421.11 126.15 418.38 126.15 415.65 126.15 415.65 132.74 415.65 139.32 418.38 139.32 421.11 139.32 421.21 162.76 421.38 186.25 428.36 186.41 435.28 186.57 435.28 162.92 435.28 139.32 438.83 139.32 442.37 139.32 442.37 132.74 442.37 126.15 438.83 126.15 435.28 126.15 435.28 115.18 435.28 104.2 428.19 104.2 421.11 104.2 421.11 115.18"/>
<path id="Path-8" data-name="Path" d="M298.58,125.87c-2.74,.98-6.37,3.05-8.27,4.74l-1.28,1.09v-5.06h-14.52v59.89h14.41l.22-19.22c.28-21.45,.56-23.3,4.08-26.73,2.23-2.18,6.37-3.32,10.45-2.89,5.36,.65,7.82,3.21,8.83,9.42,.34,1.8,.56,11.38,.56,21.34v18.13l7.15-.16,7.09-.16,.17-19.06c.11-11.65-.11-20.85-.45-23.68-1.12-8.44-4.69-13.67-11.45-16.71-2.85-1.25-4.25-1.52-8.94-1.63-4.08-.11-6.26,.05-8.04,.71Z"/>
<path id="Shape" d="M365.13,125.82c-5.39,1.32-10.07,4.08-14.47,8.54-6.6,6.66-9.36,13.16-9.36,22.36,0,19,15.25,33.27,34.12,32,5.56-.39,9.63-1.49,13.76-3.75,6.88-3.86,12.16-9.97,14.75-17.13,1.27-3.47,1.49-4.79,1.49-10.85s-.22-7.49-1.27-10.57c-3.47-9.97-12.11-17.9-22.4-20.54-3.91-.99-12.6-.99-16.62-.06Zm13.49,12.58c3.77,1.12,7.09,3.41,9.03,6.21,5.32,7.72,4.49,20.31-1.72,26.8-3.16,3.3-7.31,4.92-12.58,4.92-4.71-.06-7.26-.84-10.91-3.41-5.93-4.14-8.64-15.27-5.71-23.66,3.16-9.01,12.58-13.65,21.88-10.85Z"/>
<polygon id="Path-9" data-name="Path" points="243.34 156.49 243.34 186.57 250.57 186.41 257.75 186.25 257.92 156.33 258.03 126.46 250.68 126.46 243.34 126.46 243.34 156.49"/>
<path id="Shape-2" data-name="Shape" d="M190.61,127.46c-3.09,.49-7.94,2.25-9.76,3.52-1.65,1.15-1.98,1.04-1.98-.82v-1.65h-14.33v83h14.33v-25.78l3.2,1.65c4.47,2.25,8.93,3.24,14.72,3.24,9.59,0,17.04-2.97,23.38-9.34,6.34-6.32,8.93-12.75,8.93-22.37,.06-9.51-2.59-16-9.15-22.54-7.72-7.7-17.92-10.83-29.33-8.9Zm11.8,12.74c7.73,1.93,12.49,9.84,11.95,19.79-.38,6.25-1.86,9.73-5.64,13.27-3.78,3.43-7.62,4.7-13.15,4.37-6.74-.44-11.67-3.81-14.47-9.78-1.26-2.76-1.42-3.76-1.42-9.18s.16-6.41,1.42-9.12c1.92-4.09,3.67-6.14,7.07-7.96,4.33-2.38,8.66-2.82,14.25-1.38Z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

7
docs/static/img/databases/csv.svg vendored Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="512" height="270" viewBox="0 0 512 270">
<path d="M324.72,93.76h-38.76V55c0-1.65-1.34-2.98-2.98-2.98h-83.49c-1.65,0-2.98,1.34-2.98,2.98v83.49c0,1.65,1.34,2.98,2.98,2.98h80.51v47.71h-80.51c-1.65,0-2.98,1.34-2.98,2.98v23.85c0,1.65,1.34,2.98,2.98,2.98h125.24c1.65,0,2.98-1.34,2.98-2.98V96.74c0-1.65-1.34-2.98-2.98-2.98Z" style="fill: #eee;"/>
<rect x="184.58" y="135.51" width="101.38" height="59.64" rx="2.98" ry="2.98" style="fill: #66bb6a;"/>
<path d="M326.84,94.63l-41.75-41.75c-1.16-1.17-3.05-1.18-4.22-.02-.57,.56-.89,1.33-.88,2.13v41.75c0,1.65,1.34,2.98,2.98,2.98h41.75c1.65,0,2.99-1.32,3-2.96,0-.8-.31-1.57-.88-2.13Z" style="fill: #e0e0e0;"/>
<path d="M217.38,169.26h5.37c-.19,1.64-.8,3.21-1.79,4.53-.94,1.23-2.17,2.21-3.58,2.86-1.51,.69-3.14,1.05-4.8,1.04-3.12,.12-6.14-1.13-8.26-3.43-2.21-2.44-3.37-5.66-3.22-8.95-.13-3.28,1-6.48,3.16-8.95,2.02-2.3,4.96-3.59,8.02-3.52,3.08-.07,6.03,1.22,8.08,3.52,1.27,1.49,2.09,3.31,2.36,5.25h-5.34c-.26-1.05-.89-1.98-1.76-2.62-.97-.64-2.12-.96-3.28-.92-1.71-.05-3.36,.7-4.44,2.03-1.16,1.49-1.75,3.34-1.67,5.22-.08,1.89,.53,3.75,1.73,5.22,1.11,1.32,2.75,2.05,4.47,2,2.2,.13,4.21-1.21,4.95-3.28Zm9.99,.89h4.92c.43,2.06,2.35,3.45,4.44,3.22,.93,.05,1.86-.21,2.62-.75,.64-.46,1.01-1.21,.98-2,.06-1.06-.62-2.02-1.64-2.33-.22,0-1.21-.3-2.98-.89-1.87-.4-3.66-1.11-5.31-2.09-1.61-1.17-2.53-3.08-2.45-5.07-.08-2.01,.74-3.96,2.24-5.31,1.66-1.4,3.79-2.12,5.96-2,2.14-.08,4.24,.57,5.96,1.85,1.52,1.11,2.43,2.88,2.45,4.77h-4.98c-.33-1.55-1.81-2.57-3.37-2.33-.82-.04-1.62,.19-2.3,.66-.56,.41-.88,1.07-.86,1.76-.05,.78,.38,1.5,1.07,1.85,1.2,.5,2.45,.86,3.73,1.07,1.66,.28,3.25,.84,4.71,1.67,1.93,1.24,3.07,3.4,2.98,5.7,.1,2.56-1.19,4.98-3.37,6.32-1.69,.98-3.62,1.46-5.58,1.37-3.01,.27-5.94-1-7.81-3.37-.82-1.23-1.31-2.64-1.43-4.11Zm29.55,7.1l-8.95-23.85h5.34l5.81,16.1,4.98-16.1h5.22l-7.9,23.85h-4.5Z" style="fill: #fff;"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="512" height="270" viewBox="0 0 512 270">
<path d="M108.37,196.31l-30.16-52.22c-1.61-2.79-1.61-6.23,0-9.02l30.16-52.24c1.61-2.79,4.58-4.5,7.83-4.51h60.36c3.21,.02,6.17,1.73,7.77,4.51l30.19,52.25c1.61,2.79,1.61,6.23,0,9.02l-30.22,52.22c-1.61,2.79-4.58,4.5-7.83,4.51h-60.35c-3.21,0-6.17-1.73-7.78-4.51h.04Z" style="fill: #4386fa;"/>
<path d="M165.17,122.69s8.39,20.11-3.05,31.51c-11.43,11.4-32.25,4.1-32.25,4.1l42.34,42.5h4.3c3.22,0,6.19-1.72,7.83-4.51l19.97-34.58-39.15-39.03Z" style="isolation: isolate; opacity: .1;"/>
<path d="M175.08,163.88l-9.27-9.23c-.1-.1-.21-.19-.34-.26,8.5-11.02,6.46-26.84-4.55-35.34-10.05-7.76-24.31-6.82-33.27,2.18-9.38,9.45-9.79,24.59-.94,34.5,8.86,9.93,23.9,11.27,34.38,3.07,.07,.12,.15,.23,.24,.33l9.27,9.27c.27,.27,.64,.42,1.02,.42,.38,0,.75-.15,1.02-.42l2.46-2.46c.27-.27,.42-.64,.42-1.02,0-.38-.15-.75-.42-1.02h-.03Zm-29.53-6.01c-7.67,0-14.58-4.62-17.51-11.7-2.94-7.08-1.31-15.24,4.11-20.66,7.41-7.4,19.42-7.39,26.82,.01,3.55,3.55,5.54,8.37,5.55,13.39,0,10.47-8.49,18.95-18.96,18.96h0Zm-12.11-19.97v7.83c1.21,2.13,2.95,3.9,5.07,5.15v-13l-5.07,.02Zm9.46-6.49v21.17c1.67,.31,3.39,.31,5.07,0v-21.2l-5.07,.03Zm14.66,14.32v-4.63h-5.07v9.77c2.11-1.24,3.85-3,5.07-5.13h0Z" style="fill: #fff;"/>
<path d="M287.8,105.46h-22.88v6.8h16.26c-.81,9.54-8.75,13.61-16.23,13.61-4.75,.03-9.32-1.83-12.7-5.17s-5.29-7.89-5.3-12.64v-.31c-.08-4.81,1.78-9.45,5.15-12.88s7.99-5.35,12.8-5.34c4.58,0,8.98,1.79,12.27,4.98l4.77-4.91c-4.62-4.46-10.82-6.91-17.24-6.8-13.8-.29-25.23,10.66-25.52,24.47-.1,4.7,1.13,9.34,3.55,13.37,4.68,7.8,13.23,12.45,22.33,12.12,13.33-.03,23.17-9.19,23.17-22.74,.03-1.52-.11-3.03-.42-4.51v-.07Zm18.82-4.91c-8.76-.18-16.01,6.77-16.19,15.53v.41c-.05,8.91,7.13,16.17,16.04,16.23,8.91,.05,16.17-7.13,16.23-16.04,0-10.64-8.36-16.13-16.05-16.13h-.03Zm.09,6.33c4.62,0,8.98,3.68,8.98,9.81s-4.37,9.74-9.02,9.74c-5.12,0-9.14-4.08-9.14-9.81s3.95-9.72,9.15-9.72l.04-.02Zm34.96-6.33c-8.76-.15-15.98,6.82-16.14,15.58v.36c-.05,8.91,7.13,16.17,16.04,16.23,8.91,.05,16.17-7.13,16.23-16.04,0-10.61-8.36-16.11-16.11-16.11l-.02-.02Zm.1,6.33c4.62,0,8.98,3.68,8.98,9.81s-4.37,9.74-9.02,9.74c-5.12,0-9.14-4.08-9.14-9.81s3.95-9.72,9.14-9.72l.04-.02Zm34.33-6.33c-8.58,0-15.41,7.55-15.41,16.06-.13,8.62,6.65,15.76,15.27,16.08,3.39,.18,6.67-1.28,8.81-3.93v3.18c0,5.55-3.36,8.88-8.44,8.88-3.65-.05-6.9-2.31-8.22-5.71l-6.14,2.55c2.18,4.62,6.55,9.5,14.39,9.5,8.58,0,15.14-5.41,15.14-16.74v-28.88h-6.74v2.7c-2.22-2.42-5.38-3.76-8.66-3.68h0Zm.63,6.27c4.23,0,8.58,3.62,8.58,9.81s-4.34,9.68-8.68,9.68c-4.62,0-8.88-3.68-8.88-9.66s4.45-9.81,8.99-9.81l-.02-.02Zm44.71-6.27c-8.14,0-14.96,6.48-14.96,16.04-.31,8.57,6.39,15.77,14.97,16.08,.26,0,.53,.01,.79,0,5.39,.02,10.43-2.61,13.49-7.05l-5.55-3.68c-1.63,2.77-4.62,4.45-7.83,4.42-3.38,.13-6.5-1.81-7.87-4.91l21.53-8.93-1.09-2.61c-2.12-5.57-7.43-9.29-13.39-9.37h-.08Zm.28,6.13c2.48-.1,4.8,1.23,5.95,3.43l-14.42,6.04c-.63-4.66,3.79-9.45,8.44-9.45l.03-.03Zm-25.54,25.05h7.07v-47.33h-7.08v47.33Zm-155.67,54.5v-31.03h11.23c2.35-.05,4.63,.83,6.33,2.45,1.74,1.52,2.71,3.73,2.65,6.04,.15,2.84-1.55,5.45-4.21,6.46v.17c1.52,.48,2.86,1.43,3.81,2.71,.95,1.27,1.46,2.82,1.43,4.41,.06,2.41-.93,4.72-2.72,6.33-1.81,1.65-4.19,2.53-6.64,2.45h-11.89Zm3.98-27.2v9.52h7.24c1.33,.04,2.62-.48,3.55-1.43,1.83-1.76,1.91-4.67,.16-6.51l-.12-.12c-.89-.94-2.13-1.46-3.42-1.44h-7.35l-.06-.02Zm0,13.23v10.18h8.03c2.82,.03,5.13-2.23,5.16-5.06,0-1.34-.55-2.63-1.52-3.55-1.01-1.01-2.39-1.56-3.81-1.52h-7.87v-.05Zm26.26-14.58c0,1.55-1.26,2.8-2.82,2.8-1.14,0-2.16-.69-2.59-1.74-.59-1.43,.09-3.07,1.52-3.67,1.05-.44,2.26-.19,3.07,.62,.54,.52,.84,1.25,.82,2h0Zm-.82,7.35v21.21h-4v-21.21h4Zm14.36,31.27c-1.13,0-2.28-.14-3.34-.46-1-.27-1.96-.68-2.85-1.23-.84-.55-1.58-1.22-2.21-2-.6-.73-1.07-1.57-1.38-2.45l3.81-1.57c.41,1.22,1.2,2.27,2.26,2.99,1.08,.75,2.37,1.14,3.68,1.13,1.89,.11,3.74-.6,5.08-1.95,1.28-1.48,1.94-3.41,1.83-5.37v-2.1h-.17c-.77,1.14-1.82,2.06-3.05,2.66-1.3,.65-2.73,.99-4.18,.98-2.75,.01-5.36-1.17-7.16-3.25-1.96-2.22-3.02-5.09-2.96-8.05-.07-2.95,.98-5.82,2.94-8.03,1.79-2.1,4.41-3.31,7.16-3.3,1.45,0,2.89,.33,4.18,.98,1.23,.6,2.29,1.52,3.05,2.66h.17v-2.98h3.81v20.33c.16,2.96-.88,5.86-2.9,8.02-2.08,1.98-4.87,3.03-7.74,2.92l-.04,.05Zm.14-13.01c1.84,.05,3.6-.73,4.81-2.12,2.59-3.22,2.59-7.81,0-11.04-1.19-1.41-2.96-2.21-4.81-2.17-1.84-.03-3.61,.77-4.81,2.17-1.36,1.52-2.03,3.53-1.95,5.53-.08,2.02,.62,3.99,1.95,5.51,1.21,1.39,2.96,2.18,4.81,2.15v-.03Zm51.94,2.95l-3.14,2.03-2.13-3.17c-2.31,1.16-4.87,1.77-7.45,1.78-4.24,.09-8.39-1.61-11.36-4.7-6.14-6.47-6.14-16.6,0-23.07,6.24-6.28,16.39-6.3,22.66-.06l.06,.06c3.04,3.04,4.71,7.19,4.6,11.49,.01,2.34-.47,4.65-1.41,6.8-.92,2.11-2.27,4-3.97,5.55l2.14,3.29Zm-12.7-3.17c1.81,0,3.6-.42,5.23-1.23l-3.62-5.44,3.14-2.12,3.59,5.42c2.4-2.37,3.7-5.64,3.55-9.01,.12-3.3-1.09-6.51-3.42-8.88-2.19-2.31-5.26-3.59-8.45-3.51-3.2-.08-6.28,1.19-8.5,3.51-4.5,5.06-4.5,12.73,0,17.75,2.22,2.33,5.32,3.61,8.53,3.53l-.06-.03Zm38.63,3.14h-3.82v-2.97h-.17c-.68,1.11-1.64,2.01-2.8,2.61-1.2,.68-2.55,1.04-3.93,1.04-2.23,.14-4.41-.67-6.01-2.23-1.49-1.76-2.25-4.05-2.08-6.35v-13.34h3.98v13.05c.09,3.48,1.83,5.22,5.22,5.22,1.55,0,3.02-.71,3.97-1.94,1.08-1.3,1.65-2.94,1.61-4.62v-11.7h3.98v21.21l.04,.02Zm14.18,.7c-2.91,.08-5.72-1.09-7.72-3.21-2.04-2.2-3.13-5.11-3.03-8.11-.09-2.97,.97-5.87,2.96-8.08,4.07-4.21,10.79-4.32,15-.24l.07,.07c2.01,2.39,3.02,5.47,2.8,8.58v.43h-16.7c-.02,1.89,.73,3.71,2.08,5.03,2.66,2.59,6.92,2.54,9.51-.12,.51-.52,.93-1.12,1.25-1.78l3.56,1.73c-.91,1.74-2.28,3.2-3.96,4.21-1.75,1.02-3.74,1.53-5.76,1.49h-.06Zm-6.38-13.87h12.17c-.08-1.42-.73-2.74-1.8-3.68-1.22-.98-2.77-1.53-4.35-1.45-1.42-.03-2.8,.46-3.88,1.38-1.11,.97-1.86,2.28-2.15,3.73h0Zm24.07,13.19h-3.98v-21.21h3.81v3.47h.17c.47-1.21,1.36-2.23,2.45-2.88,1.09-.75,2.36-1.17,3.68-1.22,1.01-.02,2.01,.16,2.94,.53l-1.22,3.86c-.75-.26-1.55-.36-2.34-.31-1.51,0-2.95,.67-3.93,1.83-1.08,1.15-1.68,2.67-1.67,4.24v11.72l.08-.02Zm31.18-21.21l-13.28,30.66h-4.12l4.91-10.7-8.7-19.95h4.34l6.33,15.27h.09l6.14-15.27h4.31Z" style="fill: #767677;"/>
</svg>

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@ -0,0 +1,166 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="512" height="270" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 270">
<defs>
<style>
.cls-1 {
mask: url(#mask);
}
.cls-2 {
mask: url(#mask-2-2);
}
.cls-3 {
mask: url(#mask-6-2);
}
.cls-4 {
mask: url(#mask-4-2);
}
.cls-5 {
fill: #f1f1f1;
}
.cls-6 {
fill: #0f9d58;
}
.cls-7 {
fill: #87ceac;
}
.cls-8 {
fill: rgba(38, 50, 56, .2);
}
.cls-9 {
fill: rgba(255, 255, 255, .2);
}
.cls-10 {
fill: url(#radial-gradient);
}
.cls-11 {
fill: url(#linear-gradient);
}
.cls-12 {
mask: url(#mask-3);
}
.cls-13 {
mask: url(#mask-5);
}
.cls-14 {
mask: url(#mask-1);
}
.cls-15 {
fill: #fff;
fill-rule: evenodd;
}
.cls-16 {
fill: rgba(38, 50, 56, .1);
}
</style>
<mask id="mask" x="195.13" y="60" width="112.45" height="154.62" maskUnits="userSpaceOnUse">
<g id="mask-2">
<path id="path-1" d="M265.41,60h-59.74c-5.8,0-10.54,4.74-10.54,10.54V204.07c0,5.8,4.74,10.54,10.54,10.54h91.36c5.8,0,10.54-4.74,10.54-10.54V102.17l-42.17-42.17Z" style="fill: #fff; fill-rule: evenodd;"/>
</g>
</mask>
<mask id="mask-1" x="195.13" y="60" width="112.45" height="154.62" maskUnits="userSpaceOnUse">
<g id="mask-4">
<path id="path-3" d="M265.41,60h-59.74c-5.8,0-10.54,4.74-10.54,10.54V204.07c0,5.8,4.74,10.54,10.54,10.54h91.36c5.8,0,10.54-4.74,10.54-10.54V102.17l-42.17-42.17Z" style="fill: #fff; fill-rule: evenodd;"/>
</g>
</mask>
<mask id="mask-2-2" data-name="mask-2" x="195.13" y="60" width="112.45" height="154.62" maskUnits="userSpaceOnUse">
<g id="mask-6">
<path id="path-5" d="M265.41,60h-59.74c-5.8,0-10.54,4.74-10.54,10.54V204.07c0,5.8,4.74,10.54,10.54,10.54h91.36c5.8,0,10.54-4.74,10.54-10.54V102.17l-42.17-42.17Z" style="fill: #fff; fill-rule: evenodd;"/>
</g>
</mask>
<linearGradient id="linear-gradient" x1="-2731.63" y1="265.89" x2="-2731.63" y2="263.72" gradientTransform="translate(45228.9 4475.91) scale(16.45 -16.45)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#263238" stop-opacity=".2"/>
<stop offset="1" stop-color="#263238" stop-opacity=".02"/>
</linearGradient>
<mask id="mask-3" x="195.13" y="60" width="112.45" height="154.62" maskUnits="userSpaceOnUse">
<g id="mask-9">
<path id="path-8" d="M265.41,60h-59.74c-5.8,0-10.54,4.74-10.54,10.54V204.07c0,5.8,4.74,10.54,10.54,10.54h91.36c5.8,0,10.54-4.74,10.54-10.54V102.17l-42.17-42.17Z" style="fill: #fff; fill-rule: evenodd;"/>
</g>
</mask>
<mask id="mask-4-2" data-name="mask-4" x="195.13" y="60" width="112.45" height="154.62" maskUnits="userSpaceOnUse">
<g id="mask-11">
<path id="path-10" d="M265.41,60h-59.74c-5.8,0-10.54,4.74-10.54,10.54V204.07c0,5.8,4.74,10.54,10.54,10.54h91.36c5.8,0,10.54-4.74,10.54-10.54V102.17l-42.17-42.17Z" style="fill: #fff; fill-rule: evenodd;"/>
</g>
</mask>
<mask id="mask-5" x="195.13" y="60" width="112.45" height="154.62" maskUnits="userSpaceOnUse">
<g id="mask-13">
<path id="path-12" d="M265.41,60h-59.74c-5.8,0-10.54,4.74-10.54,10.54V204.07c0,5.8,4.74,10.54,10.54,10.54h91.36c5.8,0,10.54-4.74,10.54-10.54V102.17l-42.17-42.17Z" style="fill: #fff; fill-rule: evenodd;"/>
</g>
</mask>
<mask id="mask-6-2" data-name="mask-6" x="195.13" y="60" width="112.45" height="154.62" maskUnits="userSpaceOnUse">
<g id="mask-15">
<path id="path-14" d="M265.41,60h-59.74c-5.8,0-10.54,4.74-10.54,10.54V204.07c0,5.8,4.74,10.54,10.54,10.54h91.36c5.8,0,10.54-4.74,10.54-10.54V102.17l-42.17-42.17Z" style="fill: #fff; fill-rule: evenodd;"/>
</g>
</mask>
<radialGradient id="radial-gradient" cx="-2859.02" cy="269.7" fx="-2859.02" fy="269.7" r="3.83" gradientTransform="translate(135525.83 12829.78) scale(47.33 -47.33)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#fff" stop-opacity=".1"/>
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
</radialGradient>
</defs>
<g id="Page-1">
<g id="Consumer-Apps-Sheets-Large-VD-R8-" transform="translate(-451.000000, -451.000000)">
<g id="Hero" transform="translate(0.000000, 63.000000)">
<g id="Personal" transform="translate(277.000000, 299.000000)">
<g id="Sheets-icon" transform="translate(174.833333, 89.958333)">
<g id="Group">
<g id="Clipped">
<g style="mask: url(#mask);">
<path id="Path" d="M265.41,60h-59.74c-5.8,0-10.54,4.74-10.54,10.54V204.07c0,5.8,4.74,10.54,10.54,10.54h91.36c5.8,0,10.54-4.74,10.54-10.54V102.17l-24.6-17.57-17.57-24.6Z" style="fill: #0f9d58;"/>
</g>
</g>
<g id="Clipped-2" data-name="Clipped">
<g style="mask: url(#mask-1);">
<path id="Shape" d="M223.24,135.55v50.95h56.22v-50.95h-56.22Zm24.6,43.92h-17.57v-8.78h17.57v8.78Zm0-14.06h-17.57v-8.78h17.57v8.78Zm0-14.06h-17.57v-8.78h17.57v8.78Zm24.6,28.11h-17.57v-8.78h17.57v8.78Zm0-14.06h-17.57v-8.78h17.57v8.78Zm0-14.06h-17.57v-8.78h17.57v8.78Z" style="fill: #f1f1f1;"/>
</g>
</g>
<g id="Clipped-3" data-name="Clipped">
<g style="mask: url(#mask-2-2);">
<polygon id="Path-2" data-name="Path" points="268.49 99.08 307.58 138.16 307.58 102.17 268.49 99.08" style="fill: url(#linear-gradient);"/>
</g>
</g>
<g id="Clipped-4" data-name="Clipped">
<g style="mask: url(#mask-3);">
<g id="Group-2" data-name="Group">
<g transform="translate(26.625000, -2.958333)">
<path id="Path-3" data-name="Path" d="M265.41,60v31.63c0,5.82,4.72,10.54,10.54,10.54h31.63l-42.17-42.17Z" style="fill: #87ceac;"/>
</g>
</g>
</g>
</g>
<g id="Clipped-5" data-name="Clipped">
<g style="mask: url(#mask-4-2);">
<path id="Path-4" data-name="Path" d="M205.67,60c-5.8,0-10.54,4.74-10.54,10.54v.88c0-5.8,4.74-10.54,10.54-10.54h59.74v-.88h-59.74Z" style="fill: rgba(255, 255, 255, .2);"/>
</g>
</g>
<g id="Clipped-6" data-name="Clipped">
<g style="mask: url(#mask-5);">
<path id="Path-5" data-name="Path" d="M297.04,213.74h-91.36c-5.8,0-10.54-4.74-10.54-10.54v.88c0,5.8,4.74,10.54,10.54,10.54h91.36c5.8,0,10.54-4.74,10.54-10.54v-.88c0,5.8-4.74,10.54-10.54,10.54Z" style="fill: rgba(38, 50, 56, .2);"/>
</g>
</g>
<g id="Clipped-7" data-name="Clipped">
<g style="mask: url(#mask-6-2);">
<path id="Path-6" data-name="Path" d="M275.95,102.17c-5.82,0-10.54-4.72-10.54-10.54v.88c0,5.82,4.72,10.54,10.54,10.54h31.63v-.88h-31.63Z" style="fill: rgba(38, 50, 56, .1);"/>
</g>
</g>
</g>
<path id="Path-7" data-name="Path" d="M265.41,60h-59.74c-5.8,0-10.54,4.74-10.54,10.54V204.07c0,5.8,4.74,10.54,10.54,10.54h91.36c5.8,0,10.54-4.74,10.54-10.54V102.17l-42.17-42.17Z" style="fill: url(#radial-gradient);"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

BIN
docs/static/img/databases/mysql.jpg vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="512" height="270" viewBox="0 0 512 270">
<path d="M155.78,136.57h-15.51v-15.6h16.35c5.98,0,8.98,2.64,8.98,7.92s-3.27,7.68-9.82,7.68m11.15-15.78c-2.14-1.9-5.1-2.85-8.92-2.85l-22.21,.12v37.31h4.47l-.04-15.88h16.53c4.14,0,7.41-.95,9.79-2.85,2.38-1.9,3.57-4.54,3.57-7.92s-1.06-6.02-3.19-7.92h0Zm28.96,26.74c-.43,1.22-1.16,2.31-2.12,3.17-2,1.96-5.06,2.93-9.18,2.93-3.72,0-6.56-.94-8.55-2.85s-2.98-4.45-2.98-7.63c0-1.66,.26-3.13,.78-4.42s1.27-2.37,2.26-3.26c2.06-1.87,4.89-2.81,8.49-2.81,7.99,0,11.98,3.5,11.98,10.49,0,1.66-.23,3.12-.67,4.38m.81-13.76c-2.73-2.49-6.76-3.74-12.11-3.74-5.05,0-8.96,1.27-11.71,3.81-2.49,2.3-3.74,5.4-3.74,9.3s1.28,7,3.85,9.38c1.42,1.28,3.07,2.21,4.95,2.79s4.1,.86,6.64,.86c5.32,0,9.35-1.23,12.15-3.69,2.49-2.25,3.74-5.35,3.74-9.34s-1.26-7.14-3.77-9.38h0Zm33.83,14.86c0,5.02-4.5,7.53-13.5,7.53-2.75,0-5.07-.17-6.95-.52s-3.41-.93-4.59-1.73c-.91-.61-1.65-1.44-2.16-2.41-.53-.99-.88-2.23-1.04-3.74l4.19-.04c0,1.98,.73,3.43,2.2,4.37,1.57,1.12,4.36,1.68,8.36,1.68,6.29,0,9.43-1.58,9.43-4.73,0-1.84-1.07-3.11-3.16-3.81-.43-.13-2.97-.49-7.62-1.06s-7.56-1.09-8.71-1.54c-2.48-.99-3.72-2.77-3.72-5.33s1.11-4.38,3.34-5.61c1.1-.51,2.47-.9,4.11-1.18,1.65-.28,3.55-.42,5.71-.42,8.66,0,12.99,2.72,12.99,8.15h-3.98c0-3.82-3.05-5.75-9.13-5.75-3.1,0-5.41,.4-6.93,1.16s-2.28,1.96-2.28,3.57c0,1.5,1.03,2.58,3.08,3.25,1.2,.35,3.97,.75,8.29,1.2,3.87,.35,6.53,.84,7.97,1.47,2.75,1.07,4.13,2.89,4.13,5.45l-.03,.04Zm16.45,6.81l-1.7,.24-1.06,.08c-2.73,0-4.68-.39-5.9-1.19s-1.81-2.17-1.81-4.14v-17.05h-4.95v-2.5h4.93l.04-8.04h3.82v8.04h6.65v2.54l-6.65-.04v16.57c0,1.23,.33,2.08,.98,2.54s1.82,.7,3.51,.7c.24,.03,.51,.02,.8-.03,.45-.08,.89-.18,1.32-.3l.04,2.54v.03Zm26.39-5.65c-1.04,.86-2.23,1.51-3.56,1.96s-2.87,.67-4.61,.67c-7.98,0-11.97-3.3-11.97-9.89,0-3.07,1.02-5.47,3.06-7.21s4.92-2.6,8.63-2.6,6.57,.88,8.51,2.62,2.9,4.09,2.9,7.03c0,3.2-.99,5.67-2.96,7.41m6.78-18.89h-3.82l-.04,4.21c-1.68-1.71-2.89-2.79-3.61-3.24-2.14-1.18-4.9-1.76-8.29-1.76-4.97,0-8.76,1.14-11.38,3.4-2.49,2.08-3.73,5.1-3.73,9.05,0,1.95,.31,3.69,.94,5.21s1.54,2.84,2.75,3.9c2.62,2.19,6.33,3.28,11.12,3.28,5.75,0,9.83-1.57,12.24-4.72v4.36c0,2.78-.88,4.93-2.62,6.45s-4.63,2.27-8.64,2.27c-3.77,0-6.45-.53-8.05-1.56-1.2-.8-2.03-2.18-2.49-4.15h-3.93c.43,2.75,1.6,4.74,3.47,5.96,2.19,1.41,5.88,2.12,11.09,2.12,9.97,0,14.97-3.71,14.97-11.12v-23.67h.01Zm20.65,2.47c-1.15-.19-2.22-.27-3.2-.27-6.27,0-9.41,3.44-9.41,10.32v11.97h-3.78l-.04-24.48,3.82,.04v4.37h.2c.64-1.72,1.66-3.03,3.04-3.92,1.52-.86,3.79-1.29,6.81-1.29h2.56v3.26Zm3.55,8.23c.48-2.78,1.56-4.94,3.24-6.46,1.1-.88,2.34-1.55,3.73-1.99s2.94-.66,4.69-.66c3.39,0,6.15,.93,8.31,2.79s3.22,3.97,3.22,6.32h-23.19m23.56-7.55c-1.34-1.34-2.99-2.33-4.97-2.97s-4.28-.96-6.95-.96c-4.94,0-8.78,1.15-11.51,3.45s-4.09,5.43-4.09,9.38,1.31,7.08,3.93,9.42c2.83,2.57,6.82,3.85,11.98,3.85,2.06,0,3.96-.23,5.71-.7s3.28-1.13,4.59-1.98c2.3-1.65,3.75-3.69,4.37-6.11h-4.13c-1.42,4.19-4.94,6.28-10.58,6.28-3.98,0-7.04-1.02-9.17-3.07-1.84-1.75-2.76-4.03-2.76-6.82h27.21c0-4.15-1.2-7.41-3.65-9.76h.01Z" style="fill: #231f20;"/>
<path d="M371.91,145.36c0,7.27-5.86,10.9-17.59,10.9-7.03,0-12.15-1.25-15.39-3.74-2.65-2.06-3.97-5.2-3.97-9.42h4.72c0,6.79,4.88,10.18,14.63,10.18,4.68,0,8.06-.69,10.16-2.08,1.76-1.23,2.65-3.15,2.65-5.76s-1.2-4.4-3.61-5.45c-1.36-.56-4.68-1.27-9.98-2.12-6.65-1.02-10.97-2.03-12.95-3.04-2.86-1.5-4.28-4.03-4.28-7.61,0-3.34,1.2-5.82,3.65-7.45,2.62-1.79,7.11-2.68,13.47-2.68,11.49,0,17.24,3.82,17.24,11.45h-4.76c0-5.72-4.27-8.58-12.8-8.58-4.28,0-7.41,.57-9.39,1.74-1.87,1.23-2.81,3.03-2.81,5.41s1.2,4.24,3.61,5.25c1.28,.59,5.05,1.4,11.31,2.45,5.88,.88,9.85,1.91,11.89,3.07,2.81,1.44,4.21,3.94,4.21,7.48h-.01Zm38.35,3.71c-1.76,1.41-3.76,2.47-5.98,3.18s-4.71,1.06-7.46,1.06c-5.62,0-10.16-1.51-13.62-4.54s-5.19-7.06-5.19-12.1,1.72-9.35,5.15-12.28,7.99-4.4,13.66-4.4,10.27,1.53,13.56,4.6c1.74,1.5,3.02,3.24,3.85,5.24s1.24,4.28,1.24,6.84c0,5.23-1.74,9.36-5.22,12.4m2.51,2.47c2.46-1.73,4.28-3.84,5.46-6.3s1.77-5.32,1.77-8.55c0-5.79-1.92-10.42-5.77-13.94-2.06-1.92-4.54-3.35-7.46-4.28s-6.24-1.4-9.98-1.4c-7.27,0-12.96,1.76-17.11,5.29s-6.21,8.3-6.21,14.33,2.09,10.61,6.27,14.21c4.18,3.6,9.89,5.41,17.13,5.41,2.83,0,5.3-.19,7.41-.57s3.9-.97,5.37-1.76l6.97,4.83,2.91-2.68-6.75-4.58h-.01Zm42.56,3.82h-32.27v-37.36l4.43-.08v34.31h27.86l-.04,3.12h.01Z" style="fill: #367faf;"/>
<path d="M105.2,149.09c.45-3.17,.31-3.63,3.1-3.12l.71,.05c2.14,.08,4.94-.29,6.59-.94,3.54-1.39,5.64-3.72,2.15-3.11-7.96,1.39-8.51-.9-8.51-.9,8.41-10.58,11.93-24,8.89-27.29-8.29-8.96-22.6-4.72-22.86-4.61h-.08c-1.57-.26-3.34-.43-5.31-.45-3.6-.05-6.34,.8-8.41,2.13,0,0-25.56-8.93-24.37,11.23,.25,4.29,7.25,32.44,15.59,23.93,3.05-3.11,6-5.74,6-5.74,1.54,.86,3.3,1.24,5.05,1.09l.14-.1c-.04,.39-.03,.76,.06,1.21-2.15,2.04-1.52,2.39-5.82,3.14-4.35,.76-1.79,2.11-.13,2.47,2.02,.43,6.7,1.04,9.86-2.71l-.13,.43c.84,.57,.79,4.11,.91,6.64s.32,4.89,.93,6.28,1.33,4.97,6.97,3.95c4.72-.86,8.33-2.09,8.66-13.57" style="fill: #231f20; stroke: #231f20; stroke-width: 4.11px;"/>
<path d="M117.74,141.98c-7.96,1.39-8.51-.9-8.51-.9,8.41-10.58,11.93-24.01,8.89-27.29-8.28-8.96-22.6-4.72-22.86-4.61h-.08c-1.57-.26-3.34-.43-5.31-.45-3.6-.05-6.34,.8-8.41,2.13,0,0-25.56-8.93-24.37,11.23,.25,4.29,7.25,32.44,15.59,23.93,3.05-3.11,6-5.74,6-5.74,1.54,.86,3.3,1.24,5.05,1.09l.14-.1c-.04,.39-.02,.76,.06,1.21-2.15,2.04-1.52,2.39-5.81,3.14-4.35,.76-1.79,2.11-.13,2.47,2.02,.43,6.7,1.04,9.86-2.71l-.13,.43c.84,.57,1.43,3.72,1.34,6.57s-.17,4.81,.5,6.34,1.33,4.97,6.98,3.95c4.72-.86,7.17-3.08,7.51-6.79,.24-2.64,.79-2.25,.82-4.6l.44-1.11c.51-3.57,.08-4.72,2.99-4.19l.71,.05c2.14,.08,4.94-.29,6.59-.94,3.54-1.39,5.64-3.72,2.15-3.11h0Z" style="fill: #417ba2;"/>
<g>
<g>
<path d="M88.2,144.03c-.22,6.65,.05,13.34,.82,14.97s2.41,4.79,8.06,3.76c4.72-.86,6.44-2.52,7.18-6.18,.53-2.7,1.61-10.18,1.74-11.72m-24.58-34.15s-25.59-8.86-24.39,11.3c.27,4.29,7.25,32.44,15.6,23.92,3.05-3.11,5.81-5.55,5.81-5.55m16.82-31.29c-.89,.24,14.23-4.68,22.82,4.62,3.03,3.29-.48,16.71-8.89,27.29" style="fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.37px;"/>
<path d="M109.17,141s.53,2.29,8.51,.89c3.49-.61,1.39,1.71-2.15,3.11-2.91,1.14-9.42,1.44-9.52-.14-.27-4.08,3.43-2.84,3.16-3.86-.24-.92-1.9-1.82-2.99-4.07-.96-1.96-13.11-17.03,3.37-14.79,.6-.11-4.3-13.29-19.72-13.5s-14.91,16.08-14.91,16.08" style="fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: bevel; stroke-width: 1.37px;"/>
</g>
<g>
<path d="M83.89,142.4c-2.15,2.04-1.52,2.39-5.82,3.14-4.35,.76-1.79,2.11-.13,2.47,2.02,.43,6.7,1.04,9.86-2.72,.96-1.14,0-2.97-1.33-3.43-.64-.22-1.49-.51-2.59,.53h0Z" style="fill: none; stroke: #fff; stroke-linejoin: round; stroke-width: 1.37px;"/>
<path d="M83.75,142.36c-.22-1.2,.46-2.62,1.19-4.29,1.1-2.5,3.62-5,1.6-12.93-1.51-5.91-11.62-1.23-11.63-.43s.46,4.06-.17,7.86c-.82,4.96,3.72,9.14,8.94,8.72" style="fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.37px;"/>
</g>
</g>
<g>
<path d="M81.34,124.59c-.05,.27,.59,1,1.42,1.1s1.54-.47,1.58-.75-.59-.57-1.42-.67-1.54,.05-1.58,.32Z" style="fill: #fff; stroke: #fff; stroke-width: .46px;"/>
<path d="M106.58,124.04c.05,.27-.59,1-1.42,1.1s-1.54-.47-1.58-.75,.59-.57,1.42-.67,1.54,.04,1.58,.32h0Z" style="fill: #fff; stroke: #fff; stroke-width: .23px;"/>
</g>
<path d="M109.55,122.14c.14,2.15-.55,3.61-.63,5.9-.13,3.32,1.87,7.12-1.14,10.93" style="fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.37px;"/>
</svg>

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

BIN
docs/static/img/databases/sap-hana.jpg vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
docs/static/img/databases/sap-hana.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="512" height="270" viewBox="0 0 512 270">
<path d="M333.06,132.98l-.3-.36v.36h.3Zm-.3-3.6l.3-.32h-.3v.32Zm-30.78,13.99l-.11,.27,.16,.41,.17-.41-.12-.29h-.1v.02Zm34.42-10.43v-.36l-.3,.36h.3Zm0-3.53v-.32h-.3l.3,.32Zm-43.05,27.08h.09l.08-.2,.04-.11-.15-.43-.17,.43,.12,.31Zm17.35,0h.09l.02-.06,.09-.27-.18-.43-.15,.43,.13,.32Zm96.8-12.13l-.18-.23-.02,.43,.2-.21Zm-8.7,9.01v-.17l-.09,.23,.09-.06Zm5.86-6.53l-.02,.02,.2,.24,.22-.23-.02-.02-.37-.02Zm-6.17,1.68h.09l.22-.22v-.44l-.31,.31v.35Zm-65.44-15.57v-.36h-.3l.3,.36Z" style="fill: #29b5e8;"/>
<path d="M310.75,156.6l.04-.12h-.09l.05,.12Zm-17.28-.11h-.09l.04,.12,.05-.12Zm42.96-27.08l-.3-.32v.32h.3Zm68.25,17.44h0Zm.01-.01l.37,.02-.18-.22-.19,.2Zm-6.11,1.75l-.09-.04v.13l.09-.1Zm-62.49-15.61l.3-.36h-.3v.36Zm-3.04-3.6v-.32l-.3,.32h.3Zm65.53,19.18l.18-.18-.18,.18Z" style="fill: #29b5e8;"/>
<path d="M310.81,156.43l.1-.27-.1,.27Zm114.69-13.15v-.06c1.02-5.78,5.97-10.05,11.84-10.18,5.82,.17,10.69,4.44,11.64,10.18v.06l.06,.26h-23.59l.05-.25h0Zm-.22,3.65l-.02-.3h25.56c.36,.02,.78-.13,1.07-.4s.45-.65,.45-1.05v-.2c.02-8.33-6.72-15.1-15.05-15.12-2.92,0-5.78,.84-8.23,2.42-4.65,3-7.28,8.3-6.86,13.82-.25,8.58,6.45,15.76,15.02,16.1h1.44c5.3-.34,10.06-3.37,12.59-8.04,.42-.77,.2-1.73-.51-2.24-.34-.21-.75-.27-1.13-.17s-.71,.35-.9,.7c-1.98,3.78-5.78,6.28-10.08,6.59h-1.47c-6.55-.26-11.77-5.54-11.96-12.09v-.02m-90.09-28.44c-1.57,2.18-2.29,4.85-2.05,7.51v3.45h-4.12c-.41-.01-.81,.14-1.1,.43-.3,.29-.46,.72-.46,1.09-.02,.9,.66,1.66,1.56,1.73h4.11v28.03c-.06,.83,.56,1.56,1.39,1.62,.32,.02,.64-.05,.91-.22,.49-.29,.77-.83,.73-1.4v-28.03h4.4c.91-.05,1.6-.82,1.57-1.72,0-.41-.16-.81-.45-1.1-.29-.28-.68-.44-1.08-.42h-4.4v-3.45c-.17-1.88,.28-3.77,1.27-5.38,1.06-.97,2.49-1.42,3.92-1.22,.06,0,.12,0,.18-.01,.07,.01,.14,.01,.21,.01h.49c.88-.03,1.57-.75,1.57-1.62,0-.88-.69-1.59-1.57-1.62h-.49c-.07,0-.13,0-.2,.01-.06,0-.13-.01-.19-.01-2.3-.18-4.56,.67-6.16,2.33m-134.43,25.27c-3.67-1.27-7.63-2.23-7.63-5.35,0-3.95,4.68-5.57,7.19-5.57,6.15,0,7.47,5.04,9.2,3.51,1.72-1.53-4.36-6.45-8.75-6.45-2.7-.12-5.4,.61-7.63,2.07-2.21,1.38-3.5,3.84-3.37,6.44-.18,6.61,7.64,7.73,11,8.9s7.26,2.54,7.3,5.82c.04,4.54-5.34,5.94-7.76,5.94-6.89,0-8.75-4.04-10.08-2.77s.37,2.86,3.55,4.41c2.04,.94,4.25,1.46,6.5,1.53,2.78,.11,5.52-.73,7.76-2.37,2.11-1.6,3.35-4.09,3.37-6.73,0-6.07-5.25-7.49-10.66-9.37" style="fill: #29b5e8;"/>
<path d="M373.6,159.04c-6.81-.39-12.03-6.19-11.7-13-.73-6.46,3.92-12.29,10.38-13.02,6.46-.73,12.29,3.92,13.02,10.38,.1,.87,.1,1.76,0,2.63,.35,6.82-4.88,12.63-11.7,13m11.7-22.84l-.17-.24-.11-.14c-2.65-3.68-6.89-5.89-11.42-5.95-8.53,.42-15.11,7.64-14.75,16.2-.36,8.53,6.23,15.75,14.75,16.2,4.54-.08,8.79-2.31,11.42-6.01l.12-.15,.17-.23v4.81c-.02,.56,.27,1.08,.75,1.37,.48,.29,1.08,.29,1.56,0,.48-.29,.77-.81,.75-1.37v-29.24c.02-.56-.27-1.08-.75-1.37-.48-.29-1.08-.29-1.56,0-.48,.29-.77,.81-.75,1.37v4.76Zm13.32,12.39l-.09,.09v-31.09c.03-.85-.64-1.57-1.5-1.6-.3,0-.59,.07-.85,.22-.49,.29-.78,.81-.77,1.38v43.03c-.03,.85,.64,1.57,1.5,1.6,.3,0,.59-.07,.85-.22,.49-.29,.78-.81,.77-1.38v-7.43l6.36-6.6,.18,.22,.02,.02,11.76,14.74c.26,.41,.73,.64,1.21,.59,.37,.01,.73-.11,1.02-.33,.64-.62,.69-1.63,.13-2.31l-12.08-15.25,12.01-12.07c.62-.59,.64-1.57,.05-2.19-.02-.02-.04-.04-.05-.05-.27-.31-.67-.5-1.08-.5s-.81,.18-1.08,.5l-18.17,18.39-.18,.23Zm-47.35-32.58c-.85,.03-1.53,.73-1.53,1.58v43.03c-.03,.85,.64,1.57,1.5,1.6,.3,0,.59-.07,.85-.22,.49-.29,.78-.81,.77-1.38v-43.06c0-.87-.72-1.58-1.59-1.58m-40.47,40.41l-.02,.05-.04,.12-.04-.12-.13-.32-7.01-17.28c-.27-.6-.87-.99-1.53-.99-.64,.03-1.2,.41-1.47,.99l-7.18,17.75-.04-.12-9.05-25.56c-.28-.77-1.12-1.17-1.89-.89-.03,.01-.06,.02-.08,.03-.74,.38-1.07,1.27-.76,2.05l10.43,29.11c.1,.32,.33,.59,.63,.73,.06,.08,.15,.13,.25,.13,.18,.07,.38,.12,.57,.13,.6-.04,1.13-.42,1.33-.99,0-.05,.03-.1,.06-.13l7.19-17.82,7.27,17.82c.21,.55,.69,.95,1.27,1.05h.19c.36,0,.65-.12,.89-.33s.46-.48,.58-.79l10.37-28.98c.31-.79-.05-1.69-.83-2.05-.78-.31-1.66,.08-1.97,.86l-8.88,25.2-.14,.34Zm-90.19-24.9c.04-.55-.24-1.08-.72-1.37s-1.07-.29-1.55,0c-.48,.28-.76,.81-.72,1.37v29.5s.06,.08,.06,.13c-.01,.07,.01,.14,.06,.2,.21,.41,.58,.72,1.02,.86h.38c.46,0,.89-.22,1.15-.59,.17-.21,.28-.46,.32-.73v-17.82c0-5.39,4.28-9.81,9.66-9.97,5.4,.1,9.7,4.56,9.6,9.96v17.55c-.02,.56,.27,1.08,.75,1.37,.48,.29,1.08,.29,1.56,0,.48-.29,.77-.81,.75-1.37v-17.55c.11-7.11-5.54-12.98-12.66-13.13-3.76,.02-7.32,1.75-9.66,4.69v-3.1Zm42.68,27.52c-6.8-.41-12.01-6.2-11.7-13-.73-6.46,3.92-12.29,10.38-13.02,6.46-.73,12.29,3.92,13.02,10.38,.1,.87,.1,1.76,0,2.63,.31,6.8-4.9,12.59-11.7,13m0-29.17c-8.5,.47-15.06,7.66-14.75,16.17-.51,5.6,2.18,11,6.96,13.95s10.82,2.95,15.59,0c4.77-2.95,7.47-8.36,6.96-13.95,.33-8.52-6.24-15.73-14.75-16.2m-188.6-20.97l23.62,14.16c2.69,1.62,6.15,1.17,8.33-1.09,1.43-1.38,2.24-3.29,2.23-5.28v-28.39c.15-3.81-2.82-7.03-6.63-7.18-1.34-.05-2.66,.28-3.81,.97-2.18,1.29-3.48,3.68-3.38,6.21v16.16l-13.42-8.04c-3.23-1.92-7.41-.86-9.33,2.36-.05,.09-.11,.18-.16,.27-1.92,3.43-.8,7.77,2.54,9.85m56.78,14.13l23.62-14.16c3.35-2.08,4.46-6.42,2.54-9.85-1.77-3.31-5.9-4.56-9.21-2.79-.09,.05-.18,.1-.27,.15l-13.24,7.94v-16.05c.15-3.81-2.82-7.03-6.63-7.18-1.34-.05-2.66,.28-3.81,.97-2.18,1.29-3.48,3.68-3.38,6.21v27.83c-.14,1.49,.17,2.99,.9,4.3,1.77,3.31,5.89,4.57,9.21,2.79,.09-.05,.18-.1,.27-.16m-21.03,16.14c.02-.45,.2-.89,.49-1.23l2.76-2.87c.33-.3,.75-.48,1.2-.51h.11c.44,.03,.87,.21,1.19,.51l2.76,2.87c.3,.35,.47,.78,.49,1.23v.11c-.02,.46-.19,.89-.49,1.24l-2.76,2.87c-.33,.3-.75,.48-1.19,.51h-.11c-.45-.03-.87-.21-1.2-.51l-2.76-2.87c-.3-.35-.47-.78-.49-1.24v-.11Zm-8.36-1.18v2.48c.03,.62,.27,1.22,.67,1.69l9.37,9.73c.44,.42,1.02,.67,1.63,.7h2.38c.61-.04,1.18-.28,1.63-.7l9.37-9.73c.41-.47,.65-1.07,.67-1.69v-2.48c-.03-.62-.27-1.22-.67-1.69l-9.37-9.72c-.44-.42-1.02-.67-1.63-.7h-2.38c-.61,.04-1.18,.28-1.63,.7l-9.37,9.73c-.41,.47-.65,1.07-.67,1.69m-39.62-6.69l13.38,8.02-13.38,8.02c-3.34,2.08-4.46,6.42-2.54,9.85,1.77,3.31,5.9,4.56,9.21,2.79,.09-.05,.18-.1,.27-.15l23.62-14.16c3.5-2.24,4.53-6.89,2.29-10.39-.59-.92-1.37-1.7-2.29-2.29l-23.62-14.17c-3.23-1.92-7.41-.86-9.33,2.36-.05,.09-.11,.18-.16,.27-1.92,3.43-.8,7.77,2.54,9.85m70.81,8.01c-.04,2.57,1.28,4.97,3.47,6.32l23.63,14.16c3.23,1.92,7.41,.86,9.33-2.37,.05-.09,.1-.18,.15-.27,1.92-3.43,.8-7.78-2.54-9.85l-13.38-8.02,13.38-8.02c3.35-2.07,4.46-6.41,2.54-9.85-1.77-3.31-5.9-4.56-9.21-2.79-.09,.05-.18,.1-.27,.15l-23.63,14.17c-2.21,1.35-3.53,3.78-3.47,6.37m-30.23,15.38c-1.63-.32-3.32-.01-4.74,.84l-23.62,14.17c-3.34,2.08-4.46,6.41-2.54,9.85,1.77,3.31,5.9,4.56,9.21,2.79,.09-.05,.18-.1,.27-.15l13.42-8.04v16.03c-.15,3.81,2.82,7.03,6.63,7.18,1.34,.05,2.66-.28,3.81-.97,2.18-1.29,3.48-3.68,3.38-6.21v-28.43c.05-3.47-2.41-6.47-5.82-7.09m52.04,15.01l-23.62-14.16c-3.23-1.92-7.41-.87-9.33,2.36-.05,.09-.11,.18-.15,.27-.73,1.31-1.04,2.81-.9,4.3v27.69c-.15,3.81,2.82,7.03,6.63,7.18,1.34,.05,2.66-.28,3.81-.97,2.18-1.29,3.48-3.68,3.38-6.21v-15.92l13.24,7.94c3.23,1.92,7.41,.86,9.33-2.36,.05-.09,.11-.18,.16-.27,1.92-3.43,.8-7.77-2.54-9.85" style="fill: #29b5e8;"/>
</svg>

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
docs/static/img/github-dark.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
docs/static/img/grid-background.jpg vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

BIN
docs/static/img/hero-screenshot.jpg vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

View File

@ -15,7 +15,7 @@
under the License.
-->
<svg width="100%" height="100%" viewBox="0 0 266 69" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
<path d="M73.79,15.23C67.32,15.23 61.36,18.87 55.6,25.23C49.94,18.77 43.88,15.23 37.11,15.23C25.9,15.23 17.72,23.23 17.72,34C17.72,44.77 25.9,52.67 37.11,52.67C44,52.67 49.34,49.44 55.3,43C61.06,49.46 66.92,52.69 73.79,52.69C85,52.67 93.18,44.8 93.18,34C93.18,23.2 85,15.23 73.79,15.23ZM37.19,41.37C32.44,41.37 29.61,38.24 29.61,34.1C29.61,29.96 32.44,26.74 37.19,26.74C41.19,26.74 44.46,29.96 48,34.3C44.66,38.34 41.13,41.37 37.19,41.37ZM73.45,41.37C69.51,41.37 66.18,38.24 62.64,34.1C66.28,29.76 69.41,26.74 73.45,26.74C78.2,26.74 81,30 81,34.1C81,38.2 78.2,41.37 73.45,41.37Z" style="fill:rgb(210,211,212);fill-rule:nonzero;"/>
<path d="M73.79,15.23C67.32,15.23 61.36,18.87 55.6,25.23C49.94,18.77 43.88,15.23 37.11,15.23C25.9,15.23 17.72,23.23 17.72,34C17.72,44.77 25.9,52.67 37.11,52.67C44,52.67 49.34,49.44 55.3,43C61.06,49.46 66.92,52.69 73.79,52.69C85,52.67 93.18,44.8 93.18,34C93.18,23.2 85,15.23 73.79,15.23ZM37.19,41.37C32.44,41.37 29.61,38.24 29.61,34.1C29.61,29.96 32.44,26.74 37.19,26.74C41.19,26.74 44.46,29.96 48,34.3C44.66,38.34 41.13,41.37 37.19,41.37ZM73.45,41.37C69.51,41.37 66.18,38.24 62.64,34.1C66.28,29.76 69.41,26.74 73.45,26.74C78.2,26.74 81,30 81,34.1C81,38.2 78.2,41.37 73.45,41.37Z" style="fill:#f8fdff;fill-rule:nonzero;"/>
<path d="M63.74,50L71.28,41C68.28,40.1 65.51,37.4 62.64,34.05L55.3,43C57.703,45.788 60.556,48.154 63.74,50Z" style="fill:rgb(32,167,201);fill-rule:nonzero;"/>
<g id="Main">
<g id="Superset">
@ -24,14 +24,14 @@
<g id="Group-17">
<g id="Superset-Copy">
<g>
<path d="M116.72,40.39C116.751,39.474 116.36,38.592 115.66,38C114.539,37.193 113.272,36.609 111.93,36.28C109.421,35.66 107.048,34.582 104.93,33.1C103.37,31.922 102.481,30.053 102.55,28.1C102.528,26.015 103.555,24.052 105.28,22.88C107.327,21.458 109.79,20.754 112.28,20.88C114.812,20.767 117.301,21.577 119.28,23.16C120.994,24.509 121.961,26.601 121.88,28.78L121.88,28.88L116.82,28.88C116.861,27.778 116.419,26.71 115.61,25.96C114.667,25.171 113.457,24.773 112.23,24.85C111.077,24.779 109.934,25.104 108.99,25.77C108.263,26.344 107.842,27.224 107.85,28.15C107.867,28.99 108.298,29.769 109,30.23C110.313,31.008 111.726,31.603 113.2,32C115.582,32.553 117.81,33.633 119.72,35.16C121.197,36.462 122.013,38.362 121.94,40.33C122.008,42.418 121.013,44.404 119.3,45.6C117.238,46.985 114.78,47.662 112.3,47.53C109.663,47.589 107.072,46.823 104.89,45.34C102.838,43.996 101.66,41.648 101.81,39.2L101.81,39.09L107,39.09C106.889,40.389 107.42,41.664 108.42,42.5C109.597,43.291 111.004,43.671 112.42,43.58C113.571,43.658 114.716,43.348 115.67,42.7C116.371,42.144 116.762,41.283 116.72,40.39Z" style="fill:rgb(210,211,212);fill-rule:nonzero;"/>
<path d="M137,44.4C136.453,45.359 135.672,46.164 134.73,46.74C132.116,48.188 128.835,47.72 126.73,45.6C125.583,44.267 125.01,42.24 125.01,39.52L125.01,27.85L130.21,27.85L130.21,39.58C130.131,40.629 130.379,41.678 130.92,42.58C131.434,43.208 132.22,43.551 133.03,43.5C133.767,43.516 134.498,43.38 135.18,43.1C135.764,42.836 136.268,42.422 136.64,41.9L136.64,27.85L141.86,27.85L141.86,47.18L137.41,47.18L137,44.4Z" style="fill:rgb(210,211,212);fill-rule:nonzero;"/>
<path d="M162.87,38.05C162.99,40.508 162.286,42.937 160.87,44.95C159.569,46.68 157.492,47.658 155.33,47.56C154.4,47.575 153.478,47.384 152.63,47C151.843,46.61 151.158,46.042 150.63,45.34L150.63,54.62L145.43,54.62L145.43,27.85L150.13,27.85L150.44,30.13C150.968,29.331 151.673,28.664 152.5,28.18C153.363,27.707 154.336,27.469 155.32,27.49C157.535,27.403 159.644,28.467 160.89,30.3C162.313,32.49 163.013,35.072 162.89,37.68L162.87,38.05ZM157.65,37.65C157.71,36.118 157.397,34.595 156.74,33.21C156.228,32.144 155.132,31.476 153.95,31.51C153.253,31.49 152.562,31.656 151.95,31.99C151.393,32.322 150.937,32.799 150.63,33.37L150.63,41.86C150.942,42.394 151.4,42.828 151.95,43.11C152.573,43.411 153.259,43.558 153.95,43.54C155.082,43.61 156.161,43.032 156.73,42.05C157.376,40.819 157.684,39.439 157.62,38.05L157.65,37.65Z" style="fill:rgb(210,211,212);fill-rule:nonzero;"/>
<path d="M174.21,47.56C171.699,47.674 169.258,46.696 167.52,44.88C165.828,43.026 164.93,40.579 165.02,38.07L165.02,37.36C164.918,34.784 165.761,32.258 167.39,30.26C170.696,26.757 176.29,26.572 179.82,29.85C181.338,31.617 182.119,33.903 182,36.23L182,39.07L170.43,39.07L170.43,39.18C170.48,40.34 170.933,41.447 171.71,42.31C172.51,43.146 173.634,43.595 174.79,43.54C175.762,43.562 176.732,43.444 177.67,43.19C178.539,42.91 179.377,42.542 180.17,42.09L181.58,45.32C180.656,46.037 179.609,46.579 178.49,46.92C177.108,47.366 175.662,47.582 174.21,47.56ZM173.74,31.56C172.841,31.53 171.983,31.946 171.45,32.67C170.859,33.531 170.513,34.537 170.45,35.58L170.5,35.67L176.9,35.67L176.9,35.21C176.949,34.261 176.674,33.322 176.12,32.55C175.546,31.835 174.655,31.446 173.74,31.51L173.74,31.56Z" style="fill:rgb(210,211,212);fill-rule:nonzero;"/>
<path d="M195.3,32.33L193.38,32.33C192.711,32.303 192.047,32.47 191.47,32.81C190.964,33.141 190.567,33.614 190.33,34.17L190.33,47.18L185.13,47.18L185.13,27.85L190,27.85L190.23,30.71C190.616,29.787 191.224,28.972 192,28.34C192.71,27.776 193.594,27.476 194.5,27.49C194.741,27.488 194.982,27.508 195.22,27.55L195.89,27.7L195.3,32.33Z" style="fill:rgb(210,211,212);fill-rule:nonzero;"/>
<path d="M208.32,41.86C208.308,41.257 207.996,40.698 207.49,40.37C206.544,39.809 205.498,39.435 204.41,39.27C202.553,38.979 200.785,38.271 199.24,37.2C198.087,36.32 197.433,34.93 197.49,33.48C197.487,31.814 198.265,30.24 199.59,29.23C201.198,28.003 203.19,27.386 205.21,27.49C207.312,27.38 209.391,27.991 211.1,29.22C212.489,30.234 213.279,31.882 213.2,33.6L213.2,33.71L208.2,33.71C208.226,33.002 207.958,32.314 207.46,31.81C206.859,31.287 206.074,31.024 205.28,31.08C204.561,31.04 203.85,31.26 203.28,31.7C202.816,32.075 202.55,32.644 202.56,33.24C202.551,33.826 202.837,34.379 203.32,34.71C204.271,35.243 205.318,35.582 206.4,35.71C208.308,35.991 210.126,36.71 211.71,37.81C212.862,38.729 213.506,40.148 213.44,41.62C213.458,43.325 212.62,44.93 211.21,45.89C209.473,47.062 207.403,47.641 205.31,47.54C203.1,47.652 200.925,46.939 199.21,45.54C197.817,44.508 196.996,42.873 197,41.14L197,41.04L201.77,41.04C201.72,41.907 202.093,42.746 202.77,43.29C203.515,43.784 204.397,44.029 205.29,43.99C206.067,44.039 206.838,43.835 207.49,43.41C208.012,43.069 208.326,42.484 208.32,41.86Z" style="fill:rgb(210,211,212);fill-rule:nonzero;"/>
<path d="M224.86,47.56C222.352,47.674 219.914,46.696 218.18,44.88C216.488,43.026 215.59,40.579 215.68,38.07L215.68,37.36C215.579,34.786 216.419,32.261 218.04,30.26C221.346,26.757 226.94,26.572 230.47,29.85C231.992,31.615 232.77,33.903 232.64,36.23L232.64,39.07L221.09,39.07L221.09,39.18C221.137,40.339 221.587,41.446 222.36,42.31C223.162,43.149 224.291,43.598 225.45,43.54C226.419,43.562 227.385,43.444 228.32,43.19C229.193,42.912 230.034,42.544 230.83,42.09L232.24,45.32C231.315,46.035 230.268,46.577 229.15,46.92C227.765,47.366 226.315,47.582 224.86,47.56ZM224.4,31.56C223.5,31.526 222.641,31.943 222.11,32.67C221.519,33.532 221.174,34.537 221.11,35.58L221.17,35.67L227.57,35.67L227.57,35.21C227.619,34.261 227.344,33.322 226.79,32.55C226.214,31.832 225.318,31.442 224.4,31.51L224.4,31.56Z" style="fill:rgb(210,211,212);fill-rule:nonzero;"/>
<path d="M242.35,23.11L242.35,27.85L245.61,27.85L245.61,31.51L242.35,31.51L242.35,41.36C242.296,41.937 242.465,42.513 242.82,42.97C243.15,43.299 243.604,43.474 244.07,43.45C244.304,43.451 244.538,43.435 244.77,43.4C245.003,43.363 245.233,43.313 245.46,43.25L245.91,47.02C245.408,47.195 244.893,47.332 244.37,47.43C243.834,47.516 243.293,47.56 242.75,47.56C241.219,47.662 239.712,47.126 238.59,46.08C237.508,44.765 236.984,43.077 237.13,41.38L237.13,31.51L234.31,31.51L234.31,27.85L237.13,27.85L237.13,23.11L242.35,23.11Z" style="fill:rgb(210,211,212);fill-rule:nonzero;"/>
<path d="M116.72,40.39C116.751,39.474 116.36,38.592 115.66,38C114.539,37.193 113.272,36.609 111.93,36.28C109.421,35.66 107.048,34.582 104.93,33.1C103.37,31.922 102.481,30.053 102.55,28.1C102.528,26.015 103.555,24.052 105.28,22.88C107.327,21.458 109.79,20.754 112.28,20.88C114.812,20.767 117.301,21.577 119.28,23.16C120.994,24.509 121.961,26.601 121.88,28.78L121.88,28.88L116.82,28.88C116.861,27.778 116.419,26.71 115.61,25.96C114.667,25.171 113.457,24.773 112.23,24.85C111.077,24.779 109.934,25.104 108.99,25.77C108.263,26.344 107.842,27.224 107.85,28.15C107.867,28.99 108.298,29.769 109,30.23C110.313,31.008 111.726,31.603 113.2,32C115.582,32.553 117.81,33.633 119.72,35.16C121.197,36.462 122.013,38.362 121.94,40.33C122.008,42.418 121.013,44.404 119.3,45.6C117.238,46.985 114.78,47.662 112.3,47.53C109.663,47.589 107.072,46.823 104.89,45.34C102.838,43.996 101.66,41.648 101.81,39.2L101.81,39.09L107,39.09C106.889,40.389 107.42,41.664 108.42,42.5C109.597,43.291 111.004,43.671 112.42,43.58C113.571,43.658 114.716,43.348 115.67,42.7C116.371,42.144 116.762,41.283 116.72,40.39Z" style="fill:#f8fdff;fill-rule:nonzero;"/>
<path d="M137,44.4C136.453,45.359 135.672,46.164 134.73,46.74C132.116,48.188 128.835,47.72 126.73,45.6C125.583,44.267 125.01,42.24 125.01,39.52L125.01,27.85L130.21,27.85L130.21,39.58C130.131,40.629 130.379,41.678 130.92,42.58C131.434,43.208 132.22,43.551 133.03,43.5C133.767,43.516 134.498,43.38 135.18,43.1C135.764,42.836 136.268,42.422 136.64,41.9L136.64,27.85L141.86,27.85L141.86,47.18L137.41,47.18L137,44.4Z" style="fill:#f8fdff;fill-rule:nonzero;"/>
<path d="M162.87,38.05C162.99,40.508 162.286,42.937 160.87,44.95C159.569,46.68 157.492,47.658 155.33,47.56C154.4,47.575 153.478,47.384 152.63,47C151.843,46.61 151.158,46.042 150.63,45.34L150.63,54.62L145.43,54.62L145.43,27.85L150.13,27.85L150.44,30.13C150.968,29.331 151.673,28.664 152.5,28.18C153.363,27.707 154.336,27.469 155.32,27.49C157.535,27.403 159.644,28.467 160.89,30.3C162.313,32.49 163.013,35.072 162.89,37.68L162.87,38.05ZM157.65,37.65C157.71,36.118 157.397,34.595 156.74,33.21C156.228,32.144 155.132,31.476 153.95,31.51C153.253,31.49 152.562,31.656 151.95,31.99C151.393,32.322 150.937,32.799 150.63,33.37L150.63,41.86C150.942,42.394 151.4,42.828 151.95,43.11C152.573,43.411 153.259,43.558 153.95,43.54C155.082,43.61 156.161,43.032 156.73,42.05C157.376,40.819 157.684,39.439 157.62,38.05L157.65,37.65Z" style="fill:#f8fdff;fill-rule:nonzero;"/>
<path d="M174.21,47.56C171.699,47.674 169.258,46.696 167.52,44.88C165.828,43.026 164.93,40.579 165.02,38.07L165.02,37.36C164.918,34.784 165.761,32.258 167.39,30.26C170.696,26.757 176.29,26.572 179.82,29.85C181.338,31.617 182.119,33.903 182,36.23L182,39.07L170.43,39.07L170.43,39.18C170.48,40.34 170.933,41.447 171.71,42.31C172.51,43.146 173.634,43.595 174.79,43.54C175.762,43.562 176.732,43.444 177.67,43.19C178.539,42.91 179.377,42.542 180.17,42.09L181.58,45.32C180.656,46.037 179.609,46.579 178.49,46.92C177.108,47.366 175.662,47.582 174.21,47.56ZM173.74,31.56C172.841,31.53 171.983,31.946 171.45,32.67C170.859,33.531 170.513,34.537 170.45,35.58L170.5,35.67L176.9,35.67L176.9,35.21C176.949,34.261 176.674,33.322 176.12,32.55C175.546,31.835 174.655,31.446 173.74,31.51L173.74,31.56Z" style="fill:#f8fdff;fill-rule:nonzero;"/>
<path d="M195.3,32.33L193.38,32.33C192.711,32.303 192.047,32.47 191.47,32.81C190.964,33.141 190.567,33.614 190.33,34.17L190.33,47.18L185.13,47.18L185.13,27.85L190,27.85L190.23,30.71C190.616,29.787 191.224,28.972 192,28.34C192.71,27.776 193.594,27.476 194.5,27.49C194.741,27.488 194.982,27.508 195.22,27.55L195.89,27.7L195.3,32.33Z" style="fill:#f8fdff;fill-rule:nonzero;"/>
<path d="M208.32,41.86C208.308,41.257 207.996,40.698 207.49,40.37C206.544,39.809 205.498,39.435 204.41,39.27C202.553,38.979 200.785,38.271 199.24,37.2C198.087,36.32 197.433,34.93 197.49,33.48C197.487,31.814 198.265,30.24 199.59,29.23C201.198,28.003 203.19,27.386 205.21,27.49C207.312,27.38 209.391,27.991 211.1,29.22C212.489,30.234 213.279,31.882 213.2,33.6L213.2,33.71L208.2,33.71C208.226,33.002 207.958,32.314 207.46,31.81C206.859,31.287 206.074,31.024 205.28,31.08C204.561,31.04 203.85,31.26 203.28,31.7C202.816,32.075 202.55,32.644 202.56,33.24C202.551,33.826 202.837,34.379 203.32,34.71C204.271,35.243 205.318,35.582 206.4,35.71C208.308,35.991 210.126,36.71 211.71,37.81C212.862,38.729 213.506,40.148 213.44,41.62C213.458,43.325 212.62,44.93 211.21,45.89C209.473,47.062 207.403,47.641 205.31,47.54C203.1,47.652 200.925,46.939 199.21,45.54C197.817,44.508 196.996,42.873 197,41.14L197,41.04L201.77,41.04C201.72,41.907 202.093,42.746 202.77,43.29C203.515,43.784 204.397,44.029 205.29,43.99C206.067,44.039 206.838,43.835 207.49,43.41C208.012,43.069 208.326,42.484 208.32,41.86Z" style="fill:#f8fdff;fill-rule:nonzero;"/>
<path d="M224.86,47.56C222.352,47.674 219.914,46.696 218.18,44.88C216.488,43.026 215.59,40.579 215.68,38.07L215.68,37.36C215.579,34.786 216.419,32.261 218.04,30.26C221.346,26.757 226.94,26.572 230.47,29.85C231.992,31.615 232.77,33.903 232.64,36.23L232.64,39.07L221.09,39.07L221.09,39.18C221.137,40.339 221.587,41.446 222.36,42.31C223.162,43.149 224.291,43.598 225.45,43.54C226.419,43.562 227.385,43.444 228.32,43.19C229.193,42.912 230.034,42.544 230.83,42.09L232.24,45.32C231.315,46.035 230.268,46.577 229.15,46.92C227.765,47.366 226.315,47.582 224.86,47.56ZM224.4,31.56C223.5,31.526 222.641,31.943 222.11,32.67C221.519,33.532 221.174,34.537 221.11,35.58L221.17,35.67L227.57,35.67L227.57,35.21C227.619,34.261 227.344,33.322 226.79,32.55C226.214,31.832 225.318,31.442 224.4,31.51L224.4,31.56Z" style="fill:#f8fdff;fill-rule:nonzero;"/>
<path d="M242.35,23.11L242.35,27.85L245.61,27.85L245.61,31.51L242.35,31.51L242.35,41.36C242.296,41.937 242.465,42.513 242.82,42.97C243.15,43.299 243.604,43.474 244.07,43.45C244.304,43.451 244.538,43.435 244.77,43.4C245.003,43.363 245.233,43.313 245.46,43.25L245.91,47.02C245.408,47.195 244.893,47.332 244.37,47.43C243.834,47.516 243.293,47.56 242.75,47.56C241.219,47.662 239.712,47.126 238.59,46.08C237.508,44.765 236.984,43.077 237.13,41.38L237.13,31.51L234.31,31.51L234.31,27.85L237.13,27.85L237.13,23.11L242.35,23.11Z" style="fill:#f8fdff;fill-rule:nonzero;"/>
</g>
</g>
</g>

Before

Width:  |  Height:  |  Size: 8.7 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

20
docs/static/img/superset-mark-dark.svg vendored Normal file
View File

@ -0,0 +1,20 @@
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
--><svg width="159" height="80" viewBox="0 0 159 80" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M118.155 0C104.467 0 91.9835 7.6653 79.8285 21.0248C67.8926 7.44629 55.0806 0 40.845 0C17.1922 0 0 16.8636 0 39.531C0 62.1984 17.3017 78.9525 40.845 78.9525C55.4091 78.9525 66.5785 72.1632 79.1715 58.5847C91.3264 72.1632 103.7 79.062 118.155 79.062C141.808 79.062 159 62.4174 159 39.6405C159 16.8636 141.808 0 118.155 0ZM41.064 55.0806C31.0992 55.0806 25.0764 48.5103 25.0764 39.75C25.0764 30.9897 30.9897 24.2004 41.064 24.2004C49.4959 24.2004 56.3946 30.9897 63.8409 40.188C56.8326 48.7294 49.3864 55.0806 41.064 55.0806ZM117.498 55.0806C109.176 55.0806 102.167 48.5103 94.7211 39.75C102.386 30.5517 108.957 24.2004 117.498 24.2004C127.463 24.2004 133.376 31.0992 133.376 39.75C133.376 48.4008 127.463 55.0806 117.498 55.0806Z" fill="#F8FDFF"/>
<path d="M97.0207 73.2582L112.899 54.314C106.548 52.4525 100.744 46.7583 94.7211 39.6405L79.281 58.4752C84.3182 64.3884 90.3409 69.4256 97.0207 73.2582Z" fill="#20A8C9"/>
<path d="M79.8285 21.0248C74.7913 15.1116 68.7686 9.96492 62.1983 5.91327L46.3203 25.0765C52.343 27.1571 57.7087 32.6323 63.4029 39.531L64.0599 39.969L79.8285 21.0248Z" fill="#20A7C9"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1238,7 +1238,7 @@
"type": "array"
},
"granularity": {
"description": "Name of temporal column used for time filtering.
"description": "Name of temporal column used for time filtering.",
"nullable": true,
"type": "string"
},

BIN
docs/static/video/superset-video-4k.mp4 vendored Normal file

Binary file not shown.