docs: hasura con banner updated and thin banner stripe bg color updated

>

## Description ✍️
Hasura con banner updated and announcement banner background color change

->

- Docs

---

### Kodiak commit message
Information used by [Kodiak bot](https://kodiakhq.com/) while merging this PR.

#### Commit title
Same as the title of this pull request

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4846
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 78d922cd34204bf271359875d27eec1f0f789e8b
This commit is contained in:
surendran82 2022-06-24 15:48:10 +05:30 committed by hasura-bot
parent 6c5cd40763
commit b9db8afbee
11 changed files with 485 additions and 2 deletions

View File

@ -135,7 +135,7 @@ const config = {
id: 'announcement-bar-3',
content:
'<a target="_blank" rel="noopener noreferrer" href="https://hasura.io/events/hasura-con-2022/">Join us for our annual Hasura user conference, HasuraCon22</a>',
backgroundColor: "#000",
backgroundColor: "#511AAA",
textColor: '#fff',
},
navbar: {

View File

@ -1,5 +1,6 @@
import React from 'react';
import ActualDocItem from '@theme/DocItem';
import HasuraConBanner from "@site/src/components/HasuraConBanner";
import GraphQLWithHasuraBanner from "@site/src/components/GraphQLWithHasuraBanner";
import PageHelpful from "@site/src/components/PageHelpful";
import CustomFooter from '@site/src/components/CustomFooter';
@ -10,6 +11,7 @@ const CustomDocItem = (props) => (
<ActualDocItem {...props} />
<div className={styles['custom_doc_item_footer']}>
<PageHelpful />
<HasuraConBanner {...props} />
<GraphQLWithHasuraBanner />
<CustomFooter />
</div>

View File

@ -0,0 +1,35 @@
import React from 'react';
import hasuraConDark from "@site/static/img/hasura-con-dark.png";
import hasuraConLight from "@site/static/img/hasura-con-light.png";
import ArrowRight from "@site/static/icons/arrow_right.svg";
import styles from './styles.module.scss';
const HasuraConBanner = (props) => {
return (
<a className={styles["hasura-con-banner"]} href="https://hasura.io/events/hasura-con-2022/">
<div className={styles["hasura-con-brand"]}>
<img className={styles["brand-dark"]} src={hasuraConDark} alt="Hasura Con" />
<img className={styles["brand-light"]} src={hasuraConLight} alt="Hasura Con" />
<div>June 28 - 30, 2022</div>
</div>
<div className={styles["hasura-con-space-between"]}>
<div>
<div className={styles["hasura-con-desc"]}>
The Hasura User Conference
</div>
<div className={styles["hasura-con-title"]}>
GraphQL for Everyone
</div>
</div>
<div className={styles["hasura-con-register"] + " " + styles["hasura-con-register-mobile-hide"]}>
Register Now
<ArrowRight />
</div>
</div>
</a>
);
}
export default HasuraConBanner;

View File

@ -0,0 +1,153 @@
.hasura-con-banner {
margin: 40px 0;
display: grid;
grid-template-columns: 110px 1fr;
grid-gap: 36px;
padding: 20px 100px;
background-image: url("@site/static/img/hasura-con-banner-light-bg.svg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
border-radius: 8px;
&:hover {
text-decoration: none;
.hasura-con-register {
svg {
transform: translateX(5px);
}
}
}
.hasura-con-space-between {
display: flex;
justify-content: space-between;
align-items: center;
}
.hasura-con-brand, .hasura-con-register, .hasura-con-desc, .hasura-con-title {
color: var(--color-gray-82);
}
.hasura-con-brand {
font-size: var(--ifm-small-font-size);
font-weight: var(--ifm-font-weight-semibold);
align-self: center;
img {
width: 97px;
margin-bottom: 4px;
}
.brand-dark {
display: block;
}
.brand-light {
display: none;
}
}
.hasura-con-desc {
font-size: var(--ifm-h6-font-size);
font-weight: var(--ifm-font-weight-normal);
padding-bottom: 4px;
}
.hasura-con-title {
font-size: var(--ifm-h3-font-size);
font-weight: var(--ifm-font-weight-semibold);
}
.hasura-con-register {
display: flex;
align-items: center;
font-size: var(--ifm-h6-font-size);
font-weight: var(--ifm-font-weight-semibold);
svg {
margin-left: 8px;
transition: all .3s ease-in-out;
path {
stroke: var(--color-gray-82);
}
}
}
.hasura-con-register-mobile-hide {
}
.hasura-con-register-mobile-show {
display: none;
}
}
html[data-theme='dark'] {
.hasura-con-banner {
background-image: url("@site/static/img/hasura-con-banner-dark-bg.svg") !important;
.hasura-con-brand {
.brand-light {
display: block;
}
.brand-dark {
display: none;
}
}
.hasura-con-register {
display: flex;
align-items: center;
svg {
path {
stroke: var(--color-gray-0);
}
}
}
.hasura-con-brand, .hasura-con-register, .hasura-con-desc, .hasura-con-title {
color: var(--color-gray-0);
}
}
}
@media (max-width: 1380px) {
.hasura-con-banner {
grid-gap: 100px;
padding: 20px 70px;
.hasura-con-title {
padding-bottom: 8px;
}
.hasura-con-space-between {
display: block;
}
}
}
@media (max-width: 1190px) {
.hasura-con-banner {
padding: 20px 40px;
grid-gap: 36px;
}
}
@media (max-width: 1190px) {
.hasura-con-banner {
grid-gap: 24px;
padding: 20px 24px;
.hasura-con-brand {
img {
margin-bottom: 16px;
}
}
.hasura-con-title {
padding-bottom: 16px;
}
}
}
@media (max-width: 996px) {
.hasura-con-banner {
padding: 20px 100px;
.hasura-con-space-between {
display: flex;
}
}
}
@media (max-width: 800px) {
.hasura-con-banner {
padding: 20px 40px;
.hasura-con-space-between {
display: block;
}
}
}
@media (max-width: 800px) {
.hasura-con-banner {
grid-template-columns: 1fr;
grid-gap: 0;
padding: 20px 24px;
}
}

View File

@ -206,6 +206,7 @@
--ifm-h4-font-size: 1.25rem; /* 20px */
--ifm-h5-font-size: 1rem; /* 16px */
--ifm-h6-font-size: 0.875rem; /* 14px */
--ifm-small-font-size: 0.75rem; /* 12px */
--ifm-heading-font-weight: var(--ifm-font-weight-semibold);
@ -594,4 +595,4 @@ div[class*="codeBlockTitle_"] {
.close {
color: #fff;
opacity: 0.75;
}
}

View File

@ -0,0 +1,100 @@
<svg width="709" height="92" viewBox="0 0 709 92" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6499_41535)">
<rect width="709" height="92" rx="8" fill="black"/>
<g filter="url(#filter0_f_6499_41535)">
<path d="M428.984 258.351C398.706 406.547 134.49 326.193 -70.2276 284.366C-274.945 242.539 -395.238 -27.3412 -364.959 -175.537C-350.153 -248.004 -185.797 83.5828 -111.44 48.4777C-33.7354 11.792 -71.5643 61.2867 -9.98683 -10.4776C-21.2778 100.298 54.1978 112.121 106.537 196.389C138.467 247.798 440.457 202.199 428.984 258.351Z" fill="url(#paint0_linear_6499_41535)"/>
</g>
<g filter="url(#filter1_f_6499_41535)">
<path d="M422.674 290.125C390.081 449.648 105.671 363.152 -114.692 318.128C-335.055 273.105 -623.969 246.681 -591.377 87.1585C-575.439 9.15328 -250.748 185.988 -170.708 148.2C-87.0642 108.71 418.687 62.4652 484.971 -14.7838C472.817 104.458 19.2429 132.719 75.582 223.428C109.952 278.766 435.023 229.681 422.674 290.125Z" fill="url(#paint1_linear_6499_41535)"/>
</g>
<g style="mix-blend-mode:color-dodge" filter="url(#filter2_f_6499_41535)">
<path d="M413.27 102.43C407.46 130.866 182.731 187.328 147.643 232.959C84.8209 214.048 33.2935 223.924 39.1035 195.488C44.9135 167.051 -29.4909 -167.116 39.074 -153.107C140.052 -66.266 108.007 172.27 413.27 102.43Z" fill="url(#paint2_linear_6499_41535)"/>
</g>
<g style="mix-blend-mode:color-dodge" filter="url(#filter3_f_6499_41535)">
<path d="M-403.392 -23.3876C-407.204 -4.73194 -296.145 129.992 -286.713 166.559C-243.935 171.313 222.069 247.013 225.88 228.358C229.692 209.702 -334.598 178.683 -155.796 -2.77313C-239.08 23.6472 -237.149 97.314 -403.392 -23.3876Z" fill="url(#paint3_linear_6499_41535)"/>
</g>
<g filter="url(#filter4_f_6499_41535)">
<path d="M20.2414 317.814C95.1456 339.459 183.031 352.272 262.152 333.341C286.001 327.192 309.834 315.861 316.793 299.996C326.979 276.934 301.506 252.501 276.656 235.808C197.006 184.704 87.9506 156.171 -17.6057 131.364C-105.278 111.575 -196.032 96.1429 -287.685 82.97C-296.459 81.7172 -304.746 79.3895 -312.07 76.1203C-319.395 72.8511 -325.614 68.7045 -330.371 63.918C-335.128 59.1314 -338.33 53.7989 -339.793 48.2258C-341.256 42.6527 -340.952 36.9485 -338.897 31.4398C-336.699 25.5615 -332.558 20.0335 -326.744 15.2143C-320.929 10.3951 -313.571 6.39226 -305.145 3.46562C-296.72 0.538983 -287.416 -1.24602 -277.837 -1.77396C-268.258 -2.30189 -258.618 -1.56102 -249.542 0.4011C-156.749 20.5815 -64.871 43.0316 24.0775 70.3444C146.602 107.308 424.539 206.614 364.703 310.885C349.1 334.814 313.296 350.31 275.277 357.177C186.3 372.682 90.1811 353.344 14.5996 324.465C13.382 323.94 12.5165 323.152 12.1676 322.25C11.8187 321.348 12.011 320.396 12.7078 319.575C13.4046 318.753 14.5573 318.12 15.9465 317.795C17.3357 317.471 18.8642 317.477 20.2414 317.814Z" fill="url(#paint4_linear_6499_41535)"/>
<g filter="url(#filter5_f_6499_41535)">
<path d="M20.2414 317.814C95.1456 339.459 183.031 352.272 262.152 333.341C286.001 327.192 309.834 315.861 316.793 299.996C326.979 276.934 301.506 252.501 276.656 235.808C197.006 184.704 87.9506 156.171 -17.6057 131.364C-105.278 111.575 -196.032 96.1429 -287.685 82.97C-296.459 81.7172 -304.746 79.3895 -312.07 76.1203C-319.395 72.8511 -325.614 68.7045 -330.371 63.918C-335.128 59.1314 -338.33 53.7989 -339.793 48.2258C-341.256 42.6527 -340.952 36.9485 -338.897 31.4398C-336.699 25.5615 -332.558 20.0335 -326.744 15.2143C-320.929 10.3951 -313.571 6.39226 -305.145 3.46562C-296.72 0.538983 -287.416 -1.24602 -277.837 -1.77396C-268.258 -2.30189 -258.618 -1.56102 -249.542 0.4011C-156.749 20.5815 -64.871 43.0316 24.0775 70.3444C146.602 107.308 424.539 206.614 364.703 310.885C349.1 334.814 313.296 350.31 275.277 357.177C186.3 372.682 90.1811 353.344 14.5996 324.465C13.382 323.94 12.5165 323.152 12.1676 322.25C11.8187 321.348 12.011 320.396 12.7078 319.575C13.4046 318.753 14.5573 318.12 15.9465 317.795C17.3357 317.471 18.8642 317.477 20.2414 317.814Z" fill="url(#paint5_linear_6499_41535)"/>
</g>
<g filter="url(#filter6_f_6499_41535)">
<path d="M20.2414 317.814C95.1456 339.459 183.031 352.272 262.152 333.341C286.001 327.192 309.834 315.861 316.793 299.996C326.979 276.934 301.506 252.501 276.656 235.808C197.006 184.704 87.9506 156.171 -17.6057 131.364C-105.278 111.575 -196.032 96.1429 -287.685 82.97C-296.459 81.7172 -304.746 79.3895 -312.07 76.1203C-319.395 72.8511 -325.614 68.7045 -330.371 63.918C-335.128 59.1314 -338.33 53.7989 -339.793 48.2258C-341.256 42.6527 -340.952 36.9485 -338.897 31.4398C-336.699 25.5615 -332.558 20.0335 -326.744 15.2143C-320.929 10.3951 -313.571 6.39226 -305.145 3.46562C-296.72 0.538983 -287.416 -1.24602 -277.837 -1.77396C-268.258 -2.30189 -258.618 -1.56102 -249.542 0.4011C-156.749 20.5815 -64.871 43.0316 24.0775 70.3444C146.602 107.308 424.539 206.614 364.703 310.885C349.1 334.814 313.296 350.31 275.277 357.177C186.3 372.682 90.1811 353.344 14.5996 324.465C13.382 323.94 12.5165 323.152 12.1676 322.25C11.8187 321.348 12.011 320.396 12.7078 319.575C13.4046 318.753 14.5573 318.12 15.9465 317.795C17.3357 317.471 18.8642 317.477 20.2414 317.814Z" fill="url(#paint6_linear_6499_41535)"/>
</g>
</g>
</g>
<defs>
<filter id="filter0_f_6499_41535" x="-580.08" y="-396.412" width="1219.87" height="950.885" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="105.242" result="effect1_foregroundBlur_6499_41535"/>
</filter>
<filter id="filter1_f_6499_41535" x="-804.393" y="-225.268" width="1499.85" height="818.06" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="105.242" result="effect1_foregroundBlur_6499_41535"/>
</filter>
<filter id="filter2_f_6499_41535" x="-34.8234" y="-198.217" width="492.775" height="475.858" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="22.3409" result="effect1_foregroundBlur_6499_41535"/>
</filter>
<filter id="filter3_f_6499_41535" x="-448.17" y="-68.0695" width="718.751" height="344.06" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="22.3409" result="effect1_foregroundBlur_6499_41535"/>
</filter>
<filter id="filter4_f_6499_41535" x="-349.103" y="-10.3396" width="730.538" height="381.411" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4.20031" result="effect1_foregroundBlur_6499_41535"/>
</filter>
<filter id="filter5_f_6499_41535" x="-343.432" y="-4.66916" width="719.197" height="370.07" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="1.3651" result="effect1_foregroundBlur_6499_41535"/>
</filter>
<filter id="filter6_f_6499_41535" x="-350.873" y="-12.1097" width="734.078" height="384.951" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="5.08537" result="effect1_foregroundBlur_6499_41535"/>
</filter>
<linearGradient id="paint0_linear_6499_41535" x1="90.6942" y1="263.595" x2="-186.387" y2="21.6257" gradientUnits="userSpaceOnUse">
<stop stop-color="#1EB4D4"/>
<stop offset="0.385417" stop-color="#FFC267"/>
<stop offset="1" stop-color="#F47E7E"/>
</linearGradient>
<linearGradient id="paint1_linear_6499_41535" x1="58.5287" y1="295.77" x2="-239.73" y2="35.3073" gradientUnits="userSpaceOnUse">
<stop stop-color="#1EB4D4"/>
<stop offset="0.385417" stop-color="#FFC267"/>
<stop offset="1" stop-color="#F47E7E"/>
</linearGradient>
<linearGradient id="paint2_linear_6499_41535" x1="37.7969" y1="211.773" x2="87.7521" y2="0.16586" gradientUnits="userSpaceOnUse">
<stop stop-color="#5175F4"/>
<stop offset="1" stop-color="#5175F4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint3_linear_6499_41535" x1="-204.945" y1="139.22" x2="-180.637" y2="-1.33304" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFAB2D"/>
<stop offset="1" stop-color="#F47E7E" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint4_linear_6499_41535" x1="-82.2191" y1="109.789" x2="-0.0326168" y2="375.085" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="0.3422" stop-color="#1EB4D4"/>
<stop offset="0.6354" stop-color="#FFC267"/>
<stop offset="1" stop-color="#F47E7E" stop-opacity="0.31"/>
</linearGradient>
<linearGradient id="paint5_linear_6499_41535" x1="-275.348" y1="143.402" x2="186.907" y2="326.031" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="0.3422" stop-color="#1EB4D4"/>
<stop offset="0.6354" stop-color="#FFC267"/>
<stop offset="1" stop-color="#F47E7E"/>
</linearGradient>
<linearGradient id="paint6_linear_6499_41535" x1="-275.348" y1="143.402" x2="95.3134" y2="293.57" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
</linearGradient>
<clipPath id="clip0_6499_41535">
<rect width="709" height="92" rx="8" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -0,0 +1,100 @@
<svg width="709" height="92" viewBox="0 0 709 92" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6499_41577)">
<rect width="709" height="92" rx="8" fill="#EAEEF2"/>
<g filter="url(#filter0_f_6499_41577)">
<path d="M428.983 258.351C398.705 406.547 134.489 326.193 -70.2286 284.366C-274.946 242.539 -395.239 -27.3412 -364.96 -175.537C-350.154 -248.004 -185.798 83.5828 -111.441 48.4777C-33.7364 11.792 -71.5653 61.2867 -9.98781 -10.4776C-21.2788 100.298 54.1968 112.121 106.536 196.389C138.466 247.798 440.456 202.199 428.983 258.351Z" fill="url(#paint0_linear_6499_41577)"/>
</g>
<g filter="url(#filter1_f_6499_41577)">
<path d="M422.673 290.125C390.08 449.648 105.67 363.152 -114.693 318.128C-335.056 273.105 -623.97 246.681 -591.378 87.1585C-575.44 9.15328 -250.749 185.988 -170.709 148.2C-87.0652 108.71 418.686 62.4652 484.97 -14.7838C472.816 104.458 19.2419 132.719 75.581 223.428C109.951 278.766 435.022 229.681 422.673 290.125Z" fill="url(#paint1_linear_6499_41577)"/>
</g>
<g style="mix-blend-mode:color-dodge" filter="url(#filter2_f_6499_41577)">
<path d="M413.269 102.43C407.459 130.866 182.73 187.328 147.642 232.959C84.82 214.048 33.2925 223.924 39.1025 195.488C44.9125 167.051 -29.4919 -167.116 39.0731 -153.107C140.051 -66.266 108.006 172.27 413.269 102.43Z" fill="url(#paint2_linear_6499_41577)"/>
</g>
<g style="mix-blend-mode:color-dodge" filter="url(#filter3_f_6499_41577)">
<path d="M-403.393 -23.3876C-407.205 -4.73194 -296.146 129.992 -286.714 166.559C-243.936 171.313 222.068 247.013 225.879 228.358C229.691 209.702 -334.599 178.683 -155.797 -2.77313C-239.081 23.6472 -237.15 97.314 -403.393 -23.3876Z" fill="url(#paint3_linear_6499_41577)"/>
</g>
<g filter="url(#filter4_f_6499_41577)">
<path d="M20.2414 317.814C95.1456 339.459 183.031 352.272 262.152 333.341C286.001 327.192 309.834 315.861 316.793 299.996C326.979 276.934 301.506 252.501 276.656 235.808C197.006 184.704 87.9506 156.171 -17.6057 131.364C-105.278 111.575 -196.032 96.1429 -287.685 82.97C-296.459 81.7172 -304.746 79.3895 -312.07 76.1203C-319.395 72.8511 -325.614 68.7045 -330.371 63.918C-335.128 59.1314 -338.33 53.7989 -339.793 48.2258C-341.256 42.6527 -340.952 36.9485 -338.897 31.4398C-336.699 25.5615 -332.558 20.0335 -326.744 15.2143C-320.929 10.3951 -313.571 6.39226 -305.145 3.46562C-296.72 0.538983 -287.416 -1.24602 -277.837 -1.77396C-268.258 -2.30189 -258.618 -1.56102 -249.542 0.4011C-156.749 20.5815 -64.871 43.0316 24.0775 70.3444C146.602 107.308 424.539 206.614 364.703 310.885C349.1 334.814 313.296 350.31 275.277 357.177C186.3 372.682 90.1811 353.344 14.5996 324.465C13.382 323.94 12.5165 323.152 12.1676 322.25C11.8187 321.348 12.011 320.396 12.7078 319.575C13.4046 318.753 14.5573 318.12 15.9465 317.795C17.3357 317.471 18.8642 317.477 20.2414 317.814Z" fill="url(#paint4_linear_6499_41577)"/>
<g filter="url(#filter5_f_6499_41577)">
<path d="M20.2414 317.814C95.1456 339.459 183.031 352.272 262.152 333.341C286.001 327.192 309.834 315.861 316.793 299.996C326.979 276.934 301.506 252.501 276.656 235.808C197.006 184.704 87.9506 156.171 -17.6057 131.364C-105.278 111.575 -196.032 96.1429 -287.685 82.97C-296.459 81.7172 -304.746 79.3895 -312.07 76.1203C-319.395 72.8511 -325.614 68.7045 -330.371 63.918C-335.128 59.1314 -338.33 53.7989 -339.793 48.2258C-341.256 42.6527 -340.952 36.9485 -338.897 31.4398C-336.699 25.5615 -332.558 20.0335 -326.744 15.2143C-320.929 10.3951 -313.571 6.39226 -305.145 3.46562C-296.72 0.538983 -287.416 -1.24602 -277.837 -1.77396C-268.258 -2.30189 -258.618 -1.56102 -249.542 0.4011C-156.749 20.5815 -64.871 43.0316 24.0775 70.3444C146.602 107.308 424.539 206.614 364.703 310.885C349.1 334.814 313.296 350.31 275.277 357.177C186.3 372.682 90.1811 353.344 14.5996 324.465C13.382 323.94 12.5165 323.152 12.1676 322.25C11.8187 321.348 12.011 320.396 12.7078 319.575C13.4046 318.753 14.5573 318.12 15.9465 317.795C17.3357 317.471 18.8642 317.477 20.2414 317.814Z" fill="url(#paint5_linear_6499_41577)"/>
</g>
<g filter="url(#filter6_f_6499_41577)">
<path d="M20.2414 317.814C95.1456 339.459 183.031 352.272 262.152 333.341C286.001 327.192 309.834 315.861 316.793 299.996C326.979 276.934 301.506 252.501 276.656 235.808C197.006 184.704 87.9506 156.171 -17.6057 131.364C-105.278 111.575 -196.032 96.1429 -287.685 82.97C-296.459 81.7172 -304.746 79.3895 -312.07 76.1203C-319.395 72.8511 -325.614 68.7045 -330.371 63.918C-335.128 59.1314 -338.33 53.7989 -339.793 48.2258C-341.256 42.6527 -340.952 36.9485 -338.897 31.4398C-336.699 25.5615 -332.558 20.0335 -326.744 15.2143C-320.929 10.3951 -313.571 6.39226 -305.145 3.46562C-296.72 0.538983 -287.416 -1.24602 -277.837 -1.77396C-268.258 -2.30189 -258.618 -1.56102 -249.542 0.4011C-156.749 20.5815 -64.871 43.0316 24.0775 70.3444C146.602 107.308 424.539 206.614 364.703 310.885C349.1 334.814 313.296 350.31 275.277 357.177C186.3 372.682 90.1811 353.344 14.5996 324.465C13.382 323.94 12.5165 323.152 12.1676 322.25C11.8187 321.348 12.011 320.396 12.7078 319.575C13.4046 318.753 14.5573 318.12 15.9465 317.795C17.3357 317.471 18.8642 317.477 20.2414 317.814Z" fill="url(#paint6_linear_6499_41577)"/>
</g>
</g>
</g>
<defs>
<filter id="filter0_f_6499_41577" x="-580.081" y="-396.412" width="1219.87" height="950.885" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="105.242" result="effect1_foregroundBlur_6499_41577"/>
</filter>
<filter id="filter1_f_6499_41577" x="-804.394" y="-225.268" width="1499.85" height="818.06" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="105.242" result="effect1_foregroundBlur_6499_41577"/>
</filter>
<filter id="filter2_f_6499_41577" x="-34.8243" y="-198.217" width="492.775" height="475.858" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="22.3409" result="effect1_foregroundBlur_6499_41577"/>
</filter>
<filter id="filter3_f_6499_41577" x="-448.171" y="-68.0695" width="718.751" height="344.06" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="22.3409" result="effect1_foregroundBlur_6499_41577"/>
</filter>
<filter id="filter4_f_6499_41577" x="-349.103" y="-10.3396" width="730.538" height="381.411" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4.20031" result="effect1_foregroundBlur_6499_41577"/>
</filter>
<filter id="filter5_f_6499_41577" x="-343.432" y="-4.66916" width="719.197" height="370.07" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="1.3651" result="effect1_foregroundBlur_6499_41577"/>
</filter>
<filter id="filter6_f_6499_41577" x="-350.873" y="-12.1097" width="734.078" height="384.951" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="5.08537" result="effect1_foregroundBlur_6499_41577"/>
</filter>
<linearGradient id="paint0_linear_6499_41577" x1="90.6932" y1="263.595" x2="-186.388" y2="21.6257" gradientUnits="userSpaceOnUse">
<stop stop-color="#1EB4D4"/>
<stop offset="0.385417" stop-color="#FFC267"/>
<stop offset="1" stop-color="#F47E7E"/>
</linearGradient>
<linearGradient id="paint1_linear_6499_41577" x1="58.5278" y1="295.77" x2="-239.731" y2="35.3073" gradientUnits="userSpaceOnUse">
<stop stop-color="#1EB4D4"/>
<stop offset="0.385417" stop-color="#FFC267"/>
<stop offset="1" stop-color="#F47E7E"/>
</linearGradient>
<linearGradient id="paint2_linear_6499_41577" x1="37.7959" y1="211.773" x2="87.7511" y2="0.16586" gradientUnits="userSpaceOnUse">
<stop stop-color="#5175F4"/>
<stop offset="1" stop-color="#5175F4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint3_linear_6499_41577" x1="-204.946" y1="139.22" x2="-180.638" y2="-1.33304" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFAB2D"/>
<stop offset="1" stop-color="#F47E7E" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint4_linear_6499_41577" x1="-82.2191" y1="109.789" x2="-0.0326168" y2="375.085" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="0.3422" stop-color="#1EB4D4"/>
<stop offset="0.6354" stop-color="#FFC267"/>
<stop offset="1" stop-color="#F47E7E" stop-opacity="0.31"/>
</linearGradient>
<linearGradient id="paint5_linear_6499_41577" x1="-275.348" y1="143.402" x2="186.907" y2="326.031" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="0.3422" stop-color="#1EB4D4"/>
<stop offset="0.6354" stop-color="#FFC267"/>
<stop offset="1" stop-color="#F47E7E"/>
</linearGradient>
<linearGradient id="paint6_linear_6499_41577" x1="-275.348" y1="143.402" x2="95.3134" y2="293.57" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
</linearGradient>
<clipPath id="clip0_6499_41577">
<rect width="709" height="92" rx="8" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 9.6 KiB

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

46
docs/static/img/hasura-con-dark.svg vendored Normal file
View File

@ -0,0 +1,46 @@
<svg width="98" height="42" viewBox="0 0 98 42" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M28.17 41.9141C27.547 41.9699 26.9196 42 26.288 42C15.2319 42 6.24261 32.9978 6.24691 21.946C6.24691 21.0179 6.4016 19.7116 6.70669 18.0659C6.85278 17.2795 6.78833 16.4244 6.52621 15.6037C5.25001 11.6247 5.95901 4.08783 8.60165 0.963933C9.15166 0.306496 9.99387 -0.0501521 10.8533 0.00570851C11.717 0.0658661 12.5076 0.534236 12.9717 1.26472L15.4209 5.11051C18.6652 3.00929 22.425 1.90067 26.3052 1.90067C30.1853 1.90067 33.9452 3.01359 37.1894 5.1191L39.6387 1.27331C40.1027 0.54283 40.9106 0.07446 41.7571 0.0185994C42.6122 -0.0372612 43.4544 0.31509 44.0087 0.96823C46.6513 4.09642 47.3517 11.6333 46.0755 15.608C45.8091 16.433 45.7489 17.2838 45.8907 18.0702C46.1958 19.7202 46.3505 21.0265 46.3462 21.9546C46.3462 27.3087 44.2579 32.3447 40.468 36.126C37.1292 39.4648 32.8151 41.4801 28.1743 41.9055L28.17 41.9141Z" fill="#E7EBEF"/>
<path d="M43.765 15.0848C44.835 11.759 44.1947 5.11154 42.1236 2.65797C41.8529 2.33999 41.3458 2.38296 41.1224 2.73531L38.57 6.74009C37.9383 7.53933 36.7996 7.7241 35.9488 7.16549C33.1816 5.35217 29.8686 4.29511 26.315 4.29511C22.7571 4.29511 19.4485 5.34787 16.6769 7.1569C15.8218 7.7155 14.6874 7.53073 14.0558 6.7272L11.5077 2.71812C11.2842 2.36577 10.7772 2.31851 10.5065 2.64078C8.43103 5.09435 7.78648 11.7375 8.85643 15.0633C9.20878 16.1676 9.30761 17.3364 9.09706 18.4794C8.88651 19.6052 8.68025 20.9717 8.68025 21.917C8.68025 31.6539 16.5695 39.5561 26.3064 39.5561C36.0477 39.5561 43.9455 31.6668 43.9455 21.9299C43.9455 20.9845 43.7392 19.6181 43.5287 18.4923C43.3181 17.3536 43.417 16.1805 43.7736 15.0805L43.765 15.0848Z" fill="url(#paint0_radial_6499_41587)"/>
<path d="M43.765 15.0848C44.835 11.759 44.1947 5.11154 42.1236 2.65797C41.8529 2.33999 41.3458 2.38296 41.1224 2.73531L38.57 6.74009C37.9383 7.53933 36.7996 7.7241 35.9488 7.16549C33.1816 5.35217 29.8686 4.29511 26.315 4.29511C22.7571 4.29511 19.4485 5.34787 16.6769 7.1569C15.8218 7.7155 14.6874 7.53073 14.0558 6.7272L11.5077 2.71812C11.2842 2.36577 10.7772 2.31851 10.5065 2.64078C8.43103 5.09435 7.78648 11.7375 8.85643 15.0633C9.20878 16.1676 9.30761 17.3364 9.09706 18.4794C8.88651 19.6052 8.68025 20.9717 8.68025 21.917C8.68025 31.6539 16.5695 39.5561 26.3064 39.5561C36.0477 39.5561 43.9455 31.6668 43.9455 21.9299C43.9455 20.9845 43.7392 19.6181 43.5287 18.4923C43.3181 17.3536 43.417 16.1805 43.7736 15.0805L43.765 15.0848Z" fill="url(#paint1_radial_6499_41587)"/>
<path d="M8.82992 17.0219C6.61269 18.7149 4.70483 19.5571 3.34699 22.3759C2.98605 23.2783 2.83995 24.3998 3.30832 25.2635C3.98724 26.5225 5.63298 26.8835 6.94785 26.9307C11.0643 26.978 13.6812 25.7405 17.3895 23.9701C20.436 22.4662 23.3838 20.6915 26.2627 18.8009C26.5377 18.6204 26.8428 18.4958 27.1651 18.4399C27.4874 18.3841 27.8139 18.3927 28.1319 18.47C28.4499 18.5473 28.7464 18.6891 29.0128 18.8868C29.2792 19.0845 29.5026 19.338 29.6745 19.6259C29.8593 19.9353 29.9753 20.2833 30.0226 20.6443C30.0698 21.0052 30.0441 21.3747 29.9495 21.7228C29.855 22.0752 29.6874 22.3974 29.464 22.6767C29.2405 22.956 28.9655 23.1838 28.6518 23.3428C25.4592 24.967 22.1978 26.471 18.8118 27.687C14.1754 29.3929 3.02902 32.5984 0.309035 26.544C-0.266759 25.1045 0.0168408 23.4846 0.708653 22.1697C2.3501 19.1231 5.59431 17.3743 8.70531 16.5793C8.75688 16.5707 8.81274 16.5793 8.85571 16.6094C8.90297 16.6395 8.93735 16.6825 8.95024 16.7383C8.96743 16.7942 8.96313 16.85 8.94165 16.9016C8.92016 16.9532 8.88149 16.9918 8.82992 17.0176V17.0219Z" fill="url(#paint2_linear_6499_41587)"/>
<path d="M25.3814 13.743L27.8651 17.924C27.994 18.1431 28.2518 18.2548 28.501 18.2033L32.8066 17.2923C33.3738 17.172 33.7605 17.8552 33.3652 18.2806L30.3573 21.5119C30.1854 21.6967 30.1468 21.976 30.2671 22.1994L32.5617 26.4577C32.8281 26.9562 32.321 27.5105 31.8011 27.2871L27.5256 25.4308C27.2979 25.3319 27.0315 25.3835 26.8596 25.5683L23.6454 28.9414C23.2544 29.3496 22.5712 29.0359 22.6228 28.473L23.0782 23.6561C23.104 23.4026 22.9622 23.162 22.7302 23.0588L18.6996 21.2541C18.1711 21.0178 18.257 20.2357 18.8285 20.1283L23.147 19.2904C23.3962 19.2431 23.5896 19.0412 23.624 18.7877L24.2814 13.9707C24.3587 13.4121 25.0935 13.2617 25.3814 13.7473V13.743Z" fill="white"/>
<path d="M57.6387 10.563L59.6745 10.563L59.6745 21.6622L57.6527 21.6622L57.6527 16.9353L55.3519 16.9353L55.3519 21.6622L53.3301 21.6622L53.3301 10.563L55.3519 10.563L55.3519 15.3875L57.6387 15.3875L57.6387 10.563Z" fill="#23303D"/>
<path d="M65.9043 21.6622L65.486 19.3615L63.0597 19.3615L62.6693 21.6622L60.6475 21.6622L62.8785 10.563L65.6115 10.563L67.954 21.6622L65.9043 21.6622ZM63.3247 17.8277L65.2071 17.8277L64.245 12.5151L63.3247 17.8277Z" fill="#23303D"/>
<path d="M72.4586 19.6404L72.4586 17.27C72.4586 17.0887 72.4168 16.9632 72.3471 16.8935C72.2773 16.8237 72.1519 16.7959 71.9566 16.7959L70.5344 16.7959C69.3213 16.7959 68.7217 16.2102 68.7217 15.0389L68.7217 12.306C68.7217 11.1486 69.3492 10.563 70.618 10.563L72.5562 10.563C73.8251 10.563 74.4526 11.1486 74.4526 12.306L74.4526 13.8537L72.4168 13.8537L72.4168 12.5848C72.4168 12.4036 72.375 12.2781 72.3052 12.2084C72.2355 12.1386 72.11 12.1107 71.9148 12.1107L71.2455 12.1107C71.0503 12.1107 70.9109 12.1386 70.8411 12.2084C70.7714 12.2781 70.7296 12.4036 70.7296 12.5848L70.7296 14.8158C70.7296 14.9971 70.7714 15.1366 70.8411 15.1923C70.9109 15.262 71.0503 15.2899 71.2455 15.2899L72.6399 15.2899C73.8669 15.2899 74.4805 15.8616 74.4805 17.019L74.4805 19.9193C74.4805 21.0766 73.839 21.6622 72.5562 21.6622L70.6599 21.6622C69.377 21.6622 68.7356 21.0766 68.7356 19.9193L68.7356 18.3855L70.7575 18.3855L70.7575 19.6404C70.7575 19.8217 70.7993 19.9611 70.869 20.0169C70.9387 20.0866 71.0782 20.1145 71.2734 20.1145L71.9427 20.1145C72.124 20.1145 72.2634 20.0866 72.3331 20.0169C72.4168 19.9472 72.4586 19.8217 72.4586 19.6404Z" fill="#23303D"/>
<path d="M79.889 10.563L81.9109 10.563L81.9109 19.9193C81.9109 21.0766 81.2695 21.6622 79.9866 21.6622L77.8393 21.6622C76.5565 21.6622 75.915 21.0766 75.915 19.9193L75.915 10.563L77.9369 10.563L77.9369 19.6404C77.9369 19.8217 77.9787 19.9611 78.0484 20.0169C78.1182 20.0866 78.2437 20.1145 78.4389 20.1145L79.3731 20.1145C79.5683 20.1145 79.7078 20.0866 79.7775 20.0169C79.8472 19.9472 79.889 19.8217 79.889 19.6404L79.889 10.563Z" fill="#23303D"/>
<path d="M85.6078 17.3397L85.6078 21.6622L83.5859 21.6622L83.5859 10.563L87.6715 10.563C88.9543 10.563 89.5957 11.1486 89.5957 12.306L89.5957 15.5967C89.5957 16.5588 89.1634 17.1166 88.3129 17.2839L90.1535 21.6622L87.9782 21.6622L86.291 17.3397L85.6078 17.3397ZM85.6078 12.1107L85.6078 15.8337L87.0719 15.8337C87.2532 15.8337 87.3926 15.8059 87.4623 15.7361C87.532 15.6664 87.5739 15.5409 87.5739 15.3597L87.5739 12.5848C87.5739 12.4036 87.532 12.2781 87.4623 12.2084C87.3926 12.1386 87.2671 12.1107 87.0719 12.1107L85.6078 12.1107V12.1107Z" fill="#23303D"/>
<path d="M95.7021 21.6622L95.2838 19.3615L92.8576 19.3615L92.4672 21.6622L90.4453 21.6622L92.6763 10.563L95.4093 10.563L97.7519 21.6622L95.7021 21.6622ZM93.1225 17.8277L95.0049 17.8277L94.0428 12.5151L93.1225 17.8277Z" fill="#23303D"/>
<path d="M59.1426 27.8389L57.1068 27.8389L57.1068 26.1098C57.1068 25.9286 57.065 25.8031 56.9953 25.7334C56.9256 25.6636 56.8001 25.6358 56.6049 25.6358L55.7822 25.6358C55.6009 25.6358 55.4615 25.6636 55.3918 25.7334C55.322 25.8031 55.2802 25.9286 55.2802 26.1098L55.2802 33.3188C55.2802 33.5001 55.322 33.6395 55.3918 33.6953C55.4615 33.765 55.587 33.7929 55.7822 33.7929L56.6049 33.7929C56.7861 33.7929 56.9256 33.765 56.9953 33.6953C57.065 33.6255 57.1068 33.5001 57.1068 33.3188L57.1068 31.6316L59.1426 31.6316L59.1426 33.5279C59.1426 34.6853 58.5012 35.2709 57.2184 35.2709L55.1547 35.2709C53.8719 35.2709 53.2305 34.6853 53.2305 33.5279L53.2305 25.9007C53.2305 24.7434 53.8719 24.1577 55.1547 24.1577L57.2184 24.1577C58.5012 24.1577 59.1426 24.7434 59.1426 25.9007L59.1426 27.8389Z" fill="#23303D"/>
<path d="M62.4057 24.1582L64.553 24.1582C65.8359 24.1582 66.4773 24.7438 66.4773 25.9012L66.4773 33.5145C66.4773 34.6718 65.8359 35.2575 64.553 35.2575L62.4057 35.2575C61.1229 35.2575 60.4814 34.6718 60.4814 33.5145L60.4814 25.9012C60.4954 24.7438 61.1368 24.1582 62.4057 24.1582ZM64.4554 33.2356L64.4554 26.1801C64.4554 25.9988 64.4136 25.8733 64.3439 25.8036C64.2742 25.7339 64.1487 25.706 63.9535 25.706L63.0192 25.706C62.824 25.706 62.6846 25.7339 62.6148 25.8036C62.5451 25.8733 62.5033 25.9988 62.5033 26.1801L62.5033 33.2356C62.5033 33.4169 62.5451 33.5563 62.6148 33.6121C62.6846 33.6818 62.824 33.7097 63.0192 33.7097L63.9535 33.7097C64.1347 33.7097 64.2742 33.6818 64.3439 33.6121C64.4136 33.5424 64.4554 33.4169 64.4554 33.2356Z" fill="#23303D"/>
<path d="M72.4011 24.1582L74.2417 24.1582L74.2417 35.2575L72.3454 35.2575L69.9749 27.9091L69.9749 35.2575L68.1064 35.2575L68.1064 24.1582L70.0586 24.1582L72.4011 31.409L72.4011 24.1582Z" fill="#23303D"/>
<path d="M75.707 24.1582L77.8683 24.1582L77.8683 25.4271L76.3345 29.0385L75.707 29.0385L75.707 24.1582Z" fill="#23303D"/>
<path d="M80.9095 26.1801L80.9095 27.8394L78.8877 27.8394L78.8877 25.9012C78.8877 24.7438 79.5291 24.1582 80.8119 24.1582L82.4991 24.1582C83.7959 24.1582 84.4373 24.7438 84.4373 25.9012L84.4373 27.1561C84.4373 28.0206 84.1724 28.8712 83.6425 29.6939L81.3418 33.7097L84.4931 33.7097L84.4931 35.2575L78.9574 35.2575L78.9574 33.7934L81.8298 29.1501C82.2342 28.5226 82.4434 27.8533 82.4434 27.1143L82.4434 26.1801C82.4434 25.9988 82.4015 25.8733 82.3318 25.8036C82.2621 25.7339 82.1366 25.706 81.9414 25.706L81.4255 25.706C81.2303 25.706 81.0908 25.7339 81.0211 25.8036C80.9514 25.8593 80.9095 25.9988 80.9095 26.1801Z" fill="#23303D"/>
<path d="M87.3256 26.1801L87.3256 27.8394L85.3037 27.8394L85.3037 25.9012C85.3037 24.7438 85.9451 24.1582 87.228 24.1582L88.9152 24.1582C90.2119 24.1582 90.8533 24.7438 90.8533 25.9012L90.8533 27.1561C90.8533 28.0206 90.5884 28.8712 90.0585 29.6939L87.7578 33.7097L90.9091 33.7097L90.9091 35.2575L85.3734 35.2575L85.3734 33.7934L88.2459 29.1501C88.6502 28.5226 88.8594 27.8533 88.8594 27.1143L88.8594 26.1801C88.8594 25.9988 88.8175 25.8733 88.7478 25.8036C88.6781 25.7339 88.5526 25.706 88.3574 25.706L87.8415 25.706C87.6463 25.706 87.5068 25.7339 87.4371 25.8036C87.3674 25.8593 87.3256 25.9988 87.3256 26.1801Z" fill="#23303D"/>
<defs>
<radialGradient id="paint0_radial_6499_41587" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.4358 39.1006) scale(53.4328)">
<stop stop-color="#5870B6"/>
<stop offset="0.34" stop-color="#62C6C5"/>
<stop offset="1" stop-color="#62C6C5"/>
</radialGradient>
<radialGradient id="paint1_radial_6499_41587" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(-0.063433 12.98) rotate(11.631) scale(79.6549 79.9409)">
<stop stop-color="#5175F4"/>
<stop offset="0.61" stop-color="#31E4D6"/>
<stop offset="1" stop-color="#FFAB2D"/>
</radialGradient>
<linearGradient id="paint2_linear_6499_41587" x1="-0.94837" y1="15.5089" x2="18.9674" y2="24.3603" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="0.12" stop-color="#1FB4D3"/>
<stop offset="0.16" stop-color="#4FB7BC"/>
<stop offset="0.2" stop-color="#7DBAA6"/>
<stop offset="0.25" stop-color="#A5BD93"/>
<stop offset="0.3" stop-color="#C5BF84"/>
<stop offset="0.35" stop-color="#DEC078"/>
<stop offset="0.4" stop-color="#F0C270"/>
<stop offset="0.46" stop-color="#FAC26B"/>
<stop offset="0.53" stop-color="#FEC36A"/>
<stop offset="0.64" stop-color="#FBB36E"/>
<stop offset="0.87" stop-color="#F58B7A"/>
<stop offset="0.94" stop-color="#F37E7E"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

BIN
docs/static/img/hasura-con-light.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

46
docs/static/img/hasura-con-light.svg vendored Normal file
View File

@ -0,0 +1,46 @@
<svg width="98" height="42" viewBox="0 0 98 42" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M28.171 41.9141C27.548 41.9699 26.9206 42 26.2889 42C15.2329 42 6.24359 32.9978 6.24789 21.946C6.24789 21.0179 6.40258 19.7116 6.70766 18.0659C6.85376 17.2795 6.78931 16.4244 6.52719 15.6037C5.25099 11.6247 5.95999 4.08783 8.60263 0.963933C9.15264 0.306496 9.99484 -0.0501521 10.8542 0.00570851C11.7179 0.0658661 12.5086 0.534236 12.9726 1.26472L15.4219 5.11051C18.6661 3.00929 22.426 1.90067 26.3061 1.90067C30.1863 1.90067 33.9461 3.01359 37.1904 5.1191L39.6396 1.27331C40.1037 0.54283 40.9115 0.07446 41.758 0.0185994C42.6131 -0.0372612 43.4553 0.31509 44.0096 0.96823C46.6523 4.09642 47.3527 11.6333 46.0765 15.608C45.8101 16.433 45.7499 17.2838 45.8917 18.0702C46.1968 19.7202 46.3515 21.0265 46.3472 21.9546C46.3472 27.3087 44.2589 32.3447 40.4689 36.126C37.1302 39.4648 32.816 41.4801 28.1753 41.9055L28.171 41.9141Z" fill="white"/>
<path d="M43.765 15.0848C44.835 11.759 44.1947 5.11154 42.1236 2.65797C41.8529 2.33999 41.3458 2.38296 41.1224 2.73531L38.57 6.74009C37.9383 7.53933 36.7996 7.7241 35.9488 7.16549C33.1816 5.35217 29.8686 4.29511 26.315 4.29511C22.7571 4.29511 19.4485 5.34787 16.6769 7.1569C15.8218 7.7155 14.6874 7.53073 14.0558 6.7272L11.5077 2.71812C11.2842 2.36577 10.7772 2.31851 10.5065 2.64078C8.43103 5.09435 7.78648 11.7375 8.85643 15.0633C9.20878 16.1676 9.30761 17.3364 9.09706 18.4794C8.88651 19.6052 8.68025 20.9717 8.68025 21.917C8.68025 31.6539 16.5695 39.5561 26.3064 39.5561C36.0477 39.5561 43.9455 31.6668 43.9455 21.9299C43.9455 20.9845 43.7392 19.6181 43.5287 18.4923C43.3181 17.3536 43.417 16.1805 43.7736 15.0805L43.765 15.0848Z" fill="url(#paint0_radial_6499_41546)"/>
<path d="M43.765 15.0848C44.835 11.759 44.1947 5.11154 42.1236 2.65797C41.8529 2.33999 41.3458 2.38296 41.1224 2.73531L38.57 6.74009C37.9383 7.53933 36.7996 7.7241 35.9488 7.16549C33.1816 5.35217 29.8686 4.29511 26.315 4.29511C22.7571 4.29511 19.4485 5.34787 16.6769 7.1569C15.8218 7.7155 14.6874 7.53073 14.0558 6.7272L11.5077 2.71812C11.2842 2.36577 10.7772 2.31851 10.5065 2.64078C8.43103 5.09435 7.78648 11.7375 8.85643 15.0633C9.20878 16.1676 9.30761 17.3364 9.09706 18.4794C8.88651 19.6052 8.68025 20.9717 8.68025 21.917C8.68025 31.6539 16.5695 39.5561 26.3064 39.5561C36.0477 39.5561 43.9455 31.6668 43.9455 21.9299C43.9455 20.9845 43.7392 19.6181 43.5287 18.4923C43.3181 17.3536 43.417 16.1805 43.7736 15.0805L43.765 15.0848Z" fill="url(#paint1_radial_6499_41546)"/>
<path d="M8.82992 17.0214C6.61269 18.7144 4.70483 19.5566 3.34699 22.3755C2.98605 23.2778 2.83995 24.3993 3.30832 25.263C3.98724 26.522 5.63298 26.883 6.94785 26.9302C11.0643 26.9775 13.6812 25.74 17.3895 23.9696C20.436 22.4657 23.3838 20.691 26.2627 18.8004C26.5377 18.6199 26.8428 18.4953 27.1651 18.4394C27.4874 18.3836 27.8139 18.3922 28.1319 18.4695C28.4499 18.5469 28.7464 18.6887 29.0128 18.8863C29.2792 19.084 29.5026 19.3375 29.6745 19.6254C29.8593 19.9348 29.9753 20.2828 30.0226 20.6438C30.0698 21.0047 30.0441 21.3743 29.9495 21.7223C29.855 22.0747 29.6874 22.3969 29.464 22.6762C29.2405 22.9555 28.9655 23.1833 28.6518 23.3423C25.4592 24.9665 22.1978 26.4705 18.8118 27.6865C14.1754 29.3924 3.02902 32.5979 0.309035 26.5435C-0.266759 25.104 0.0168407 23.4841 0.708653 22.1692C2.3501 19.1226 5.59431 17.3738 8.70531 16.5788C8.75688 16.5702 8.81274 16.5788 8.85571 16.6089C8.90297 16.639 8.93735 16.682 8.95024 16.7378C8.96743 16.7937 8.96313 16.8496 8.94165 16.9011C8.92016 16.9527 8.88149 16.9913 8.82992 17.0171V17.0214Z" fill="url(#paint2_linear_6499_41546)"/>
<path d="M25.3814 13.743L27.8651 17.924C27.994 18.1431 28.2518 18.2548 28.501 18.2033L32.8066 17.2923C33.3738 17.172 33.7605 17.8552 33.3652 18.2806L30.3573 21.5119C30.1854 21.6967 30.1468 21.976 30.2671 22.1994L32.5617 26.4577C32.8281 26.9562 32.321 27.5105 31.8011 27.2871L27.5256 25.4308C27.2979 25.3319 27.0315 25.3835 26.8596 25.5683L23.6454 28.9414C23.2544 29.3496 22.5712 29.0359 22.6228 28.473L23.0782 23.6561C23.104 23.4026 22.9622 23.162 22.7302 23.0588L18.6996 21.2541C18.1711 21.0178 18.257 20.2357 18.8285 20.1283L23.147 19.2904C23.3962 19.2431 23.5896 19.0412 23.624 18.7877L24.2814 13.9707C24.3587 13.4121 25.0935 13.2617 25.3814 13.7473V13.743Z" fill="white"/>
<path d="M57.6387 10.563L59.6745 10.563L59.6745 21.6622L57.6527 21.6622L57.6527 16.9353L55.3519 16.9353L55.3519 21.6622L53.3301 21.6622L53.3301 10.563L55.3519 10.563L55.3519 15.3875L57.6387 15.3875L57.6387 10.563Z" fill="white"/>
<path d="M65.9043 21.6622L65.486 19.3615L63.0597 19.3615L62.6693 21.6622L60.6475 21.6622L62.8785 10.563L65.6115 10.563L67.954 21.6622L65.9043 21.6622ZM63.3247 17.8277L65.2071 17.8277L64.245 12.5151L63.3247 17.8277Z" fill="white"/>
<path d="M72.4586 19.6404L72.4586 17.27C72.4586 17.0887 72.4168 16.9632 72.3471 16.8935C72.2773 16.8238 72.1519 16.7959 71.9566 16.7959L70.5344 16.7959C69.3213 16.7959 68.7217 16.2102 68.7217 15.0389L68.7217 12.306C68.7217 11.1486 69.3492 10.563 70.618 10.563L72.5562 10.563C73.8251 10.563 74.4526 11.1486 74.4526 12.306L74.4526 13.8537L72.4168 13.8537L72.4168 12.5848C72.4168 12.4036 72.375 12.2781 72.3052 12.2084C72.2355 12.1386 72.11 12.1107 71.9148 12.1107L71.2455 12.1107C71.0503 12.1107 70.9109 12.1386 70.8411 12.2084C70.7714 12.2781 70.7296 12.4036 70.7296 12.5848L70.7296 14.8158C70.7296 14.9971 70.7714 15.1366 70.8411 15.1923C70.9109 15.262 71.0503 15.2899 71.2455 15.2899L72.6399 15.2899C73.8669 15.2899 74.4805 15.8616 74.4805 17.019L74.4805 19.9193C74.4805 21.0766 73.839 21.6622 72.5562 21.6622L70.6599 21.6622C69.377 21.6622 68.7356 21.0766 68.7356 19.9193L68.7356 18.3855L70.7575 18.3855L70.7575 19.6404C70.7575 19.8217 70.7993 19.9611 70.869 20.0169C70.9387 20.0866 71.0782 20.1145 71.2734 20.1145L71.9427 20.1145C72.124 20.1145 72.2634 20.0866 72.3331 20.0169C72.4168 19.9472 72.4586 19.8217 72.4586 19.6404Z" fill="white"/>
<path d="M79.889 10.563L81.9109 10.563L81.9109 19.9193C81.9109 21.0766 81.2695 21.6622 79.9866 21.6622L77.8393 21.6622C76.5565 21.6622 75.915 21.0766 75.915 19.9193L75.915 10.563L77.9369 10.563L77.9369 19.6404C77.9369 19.8217 77.9787 19.9611 78.0484 20.0169C78.1182 20.0866 78.2437 20.1145 78.4389 20.1145L79.3731 20.1145C79.5683 20.1145 79.7078 20.0866 79.7775 20.0169C79.8472 19.9472 79.889 19.8217 79.889 19.6404L79.889 10.563Z" fill="white"/>
<path d="M85.6078 17.3397L85.6078 21.6622L83.5859 21.6622L83.5859 10.563L87.6715 10.563C88.9543 10.563 89.5957 11.1486 89.5957 12.306L89.5957 15.5967C89.5957 16.5588 89.1634 17.1166 88.3129 17.2839L90.1535 21.6622L87.9782 21.6622L86.291 17.3397L85.6078 17.3397ZM85.6078 12.1107L85.6078 15.8337L87.0719 15.8337C87.2532 15.8337 87.3926 15.8059 87.4623 15.7361C87.532 15.6664 87.5739 15.5409 87.5739 15.3597L87.5739 12.5848C87.5739 12.4036 87.532 12.2781 87.4623 12.2084C87.3926 12.1386 87.2671 12.1107 87.0719 12.1107L85.6078 12.1107Z" fill="white"/>
<path d="M95.7031 21.6622L95.2848 19.3615L92.8586 19.3615L92.4681 21.6622L90.4463 21.6622L92.6773 10.563L95.4103 10.563L97.7528 21.6622L95.7031 21.6622ZM93.1235 17.8277L95.0059 17.8277L94.0438 12.5151L93.1235 17.8277Z" fill="white"/>
<path d="M59.1426 27.8389L57.1068 27.8389L57.1068 26.1098C57.1068 25.9286 57.065 25.8031 56.9953 25.7334C56.9256 25.6636 56.8001 25.6358 56.6049 25.6358L55.7822 25.6358C55.6009 25.6358 55.4615 25.6636 55.3918 25.7334C55.322 25.8031 55.2802 25.9286 55.2802 26.1098L55.2802 33.3188C55.2802 33.5001 55.322 33.6395 55.3918 33.6953C55.4615 33.765 55.587 33.7929 55.7822 33.7929L56.6049 33.7929C56.7861 33.7929 56.9256 33.765 56.9953 33.6953C57.065 33.6255 57.1068 33.5001 57.1068 33.3188L57.1068 31.6316L59.1426 31.6316L59.1426 33.5279C59.1426 34.6853 58.5012 35.2709 57.2184 35.2709L55.1547 35.2709C53.8719 35.2709 53.2305 34.6853 53.2305 33.5279L53.2305 25.9007C53.2305 24.7434 53.8719 24.1577 55.1547 24.1577L57.2184 24.1577C58.5012 24.1577 59.1426 24.7434 59.1426 25.9007L59.1426 27.8389Z" fill="white"/>
<path d="M62.4067 24.1582L64.554 24.1582C65.8368 24.1582 66.4783 24.7438 66.4783 25.9012L66.4783 33.5145C66.4783 34.6718 65.8368 35.2575 64.554 35.2575L62.4067 35.2575C61.1238 35.2575 60.4824 34.6718 60.4824 33.5145L60.4824 25.9012C60.4964 24.7438 61.1378 24.1582 62.4067 24.1582ZM64.4564 33.2356L64.4564 26.1801C64.4564 25.9988 64.4146 25.8733 64.3449 25.8036C64.2751 25.7339 64.1496 25.706 63.9544 25.706L63.0202 25.706C62.825 25.706 62.6855 25.7339 62.6158 25.8036C62.5461 25.8733 62.5043 25.9988 62.5043 26.1801L62.5043 33.2356C62.5043 33.4169 62.5461 33.5563 62.6158 33.6121C62.6855 33.6818 62.825 33.7097 63.0202 33.7097L63.9544 33.7097C64.1357 33.7097 64.2751 33.6818 64.3449 33.6121C64.4146 33.5424 64.4564 33.4169 64.4564 33.2356Z" fill="white"/>
<path d="M72.4021 24.1582L74.2427 24.1582L74.2427 35.2575L72.3463 35.2575L69.9759 27.9091L69.9759 35.2575L68.1074 35.2575L68.1074 24.1582L70.0596 24.1582L72.4021 31.409L72.4021 24.1582Z" fill="white"/>
<path d="M75.708 24.1582L77.8693 24.1582L77.8693 25.4271L76.3355 29.0385L75.708 29.0385L75.708 24.1582Z" fill="white"/>
<path d="M80.9095 26.1801L80.9095 27.8394L78.8877 27.8394L78.8877 25.9012C78.8877 24.7438 79.5291 24.1582 80.8119 24.1582L82.4991 24.1582C83.7959 24.1582 84.4373 24.7438 84.4373 25.9012L84.4373 27.1561C84.4373 28.0206 84.1724 28.8712 83.6425 29.6939L81.3418 33.7097L84.4931 33.7097L84.4931 35.2575L78.9574 35.2575L78.9574 33.7934L81.8298 29.1501C82.2342 28.5226 82.4434 27.8533 82.4434 27.1143L82.4434 26.1801C82.4434 25.9988 82.4015 25.8733 82.3318 25.8036C82.2621 25.7339 82.1366 25.706 81.9414 25.706L81.4255 25.706C81.2303 25.706 81.0908 25.7339 81.0211 25.8036C80.9514 25.8593 80.9095 25.9988 80.9095 26.1801Z" fill="white"/>
<path d="M87.3265 26.1801L87.3265 27.8394L85.3047 27.8394L85.3047 25.9012C85.3047 24.7438 85.9461 24.1582 87.2289 24.1582L88.9161 24.1582C90.2129 24.1582 90.8543 24.7438 90.8543 25.9012L90.8543 27.1561C90.8543 28.0206 90.5894 28.8712 90.0595 29.6939L87.7588 33.7097L90.9101 33.7097L90.9101 35.2575L85.3744 35.2575L85.3744 33.7934L88.2468 29.1501C88.6512 28.5226 88.8604 27.8533 88.8604 27.1143L88.8604 26.1801C88.8604 25.9988 88.8185 25.8733 88.7488 25.8036C88.6791 25.7339 88.5536 25.706 88.3584 25.706L87.8425 25.706C87.6472 25.706 87.5078 25.7339 87.4381 25.8036C87.3684 25.8593 87.3265 25.9988 87.3265 26.1801Z" fill="white"/>
<defs>
<radialGradient id="paint0_radial_6499_41546" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.4358 39.1006) scale(53.4328)">
<stop stop-color="#5870B6"/>
<stop offset="0.34" stop-color="#62C6C5"/>
<stop offset="1" stop-color="#62C6C5"/>
</radialGradient>
<radialGradient id="paint1_radial_6499_41546" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(-0.063433 12.98) rotate(11.631) scale(79.6549 79.9409)">
<stop stop-color="#5175F4"/>
<stop offset="0.61" stop-color="#31E4D6"/>
<stop offset="1" stop-color="#FFAB2D"/>
</radialGradient>
<linearGradient id="paint2_linear_6499_41546" x1="-0.94837" y1="15.5084" x2="18.9674" y2="24.3598" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="0.12" stop-color="#1FB4D3"/>
<stop offset="0.16" stop-color="#4FB7BC"/>
<stop offset="0.2" stop-color="#7DBAA6"/>
<stop offset="0.25" stop-color="#A5BD93"/>
<stop offset="0.3" stop-color="#C5BF84"/>
<stop offset="0.35" stop-color="#DEC078"/>
<stop offset="0.4" stop-color="#F0C270"/>
<stop offset="0.46" stop-color="#FAC26B"/>
<stop offset="0.53" stop-color="#FEC36A"/>
<stop offset="0.64" stop-color="#FBB36E"/>
<stop offset="0.87" stop-color="#F58B7A"/>
<stop offset="0.94" stop-color="#F37E7E"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB