feat(ui): add favicon

This commit is contained in:
lakshit verma 2026-08-17 02:20:58 +05:30
parent 835ed20278
commit 5fd89ee85e
No known key found for this signature in database
2 changed files with 13 additions and 0 deletions

View file

@ -6,6 +6,7 @@
<meta name="description" content="Work Order Desk — track field work from dispatch to done." />
<meta name="theme-color" content="#121317" />
<meta name="color-scheme" content="dark" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>Work Order Desk</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />

View file

@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
<defs>
<pattern id="hazard" width="10" height="10" patternUnits="userSpaceOnUse" patternTransform="rotate(45)">
<rect width="10" height="10" fill="#17191F"/>
<rect width="5" height="10" fill="#E04820"/>
</pattern>
</defs>
<rect x="2" y="2" width="60" height="60" rx="14" fill="#1D2027"/>
<rect x="6" y="6" width="52" height="52" rx="10" fill="url(#hazard)"/>
<circle cx="32" cy="32" r="10" fill="#121317"/>
<circle cx="32" cy="32" r="4" fill="#FFD60A"/>
</svg>

After

Width:  |  Height:  |  Size: 554 B