1
0
mirror of synced 2025-12-19 18:14:56 -05:00

docs: Add gradient with noise texture to docs home page hero section (#69106)

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: ian.alton@airbyte.io <ian.alton@airbyte.io>
This commit is contained in:
devin-ai-integration[bot]
2025-10-30 13:45:25 -07:00
committed by GitHub
parent 2c1179dcae
commit ca7f69f427
2 changed files with 14 additions and 1 deletions

View File

@@ -5,7 +5,9 @@
/* Section 1: Hero */
.heroSection {
background: var(--ifm-color-primary);
background:
linear-gradient(144deg, rgba(97,94,255,1) 45%, rgba(0,0,0,0)),
url(/noise.svg);
padding: 4rem 0;
}

View File

@@ -0,0 +1,11 @@
<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'>
<filter id='noiseFilter'>
<feTurbulence
type='fractalNoise'
baseFrequency='9.63'
numOctaves='3'
stitchTiles='stitch'/>
</filter>
<rect width='100%' height='100%' filter='url(#noiseFilter)'/>
</svg>

After

Width:  |  Height:  |  Size: 302 B