Initial Commit

This commit is contained in:
2026-04-13 11:01:20 -05:00
commit 1aadf40164
12 changed files with 840 additions and 0 deletions

21
static/static.svg Normal file
View File

@@ -0,0 +1,21 @@
<svg
xmlns='http://www.w3.org/2000/svg'
xmlns:xlink='http://www.w3.org/1999/xlink'
width='300' height='300'>
<filter id='n' x='0' y='0'>
<feTurbulence
type="fractalNoise"
baseFrequency="0.35"
stitchTiles="stitch"/>
<feColorMatrix
type="matrix"
values="0.3 0.3 0.3 0 0
0.3 0.3 0.3 0 0
0.3 0.3 0.3 0 0
0 0 0 1 0" />
</filter>
<rect width='300' height='300' fill='#fff'/>
<rect width='300' height='300' filter="url(#n)" opacity='1.0'/>
</svg>

After

Width:  |  Height:  |  Size: 634 B