🖼️ updated landing page styling

This commit was merged in pull request #1.
This commit is contained in:
RJ
2025-11-10 12:47:29 +02:00
parent b28b9bd137
commit 6ee39c4438
7 changed files with 257 additions and 80 deletions

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

8
public/grid.svg Normal file
View File

@@ -0,0 +1,8 @@
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">
<defs>
<pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse">
<path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(148, 163, 184, 0.1)" stroke-width="1"/>
</pattern>
</defs>
<rect width="100" height="100" fill="url(#grid)"/>
</svg>

After

Width:  |  Height:  |  Size: 336 B

BIN
public/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

6
public/noise.svg Normal file
View File

@@ -0,0 +1,6 @@
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<filter id="noiseFilter">
<feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/>
</filter>
<rect width="100%" height="100%" filter="url(#noiseFilter)" opacity="0.05"/>
</svg>

After

Width:  |  Height:  |  Size: 285 B