- Create public/favicon.svg with a pixel-art style workbench, anvil, and hammer - Add favicon link tag to index.html - Include favicon.svg in go:embed directive
17 lines
804 B
XML
17 lines
804 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
<!-- Background -->
|
|
<rect width="32" height="32" rx="4" fill="#3E8948"/>
|
|
<!-- Workbench top (darker wood) -->
|
|
<rect x="4" y="12" width="24" height="6" rx="1" fill="#8B5E3C"/>
|
|
<!-- Workbench top highlight -->
|
|
<rect x="4" y="12" width="24" height="2" rx="1" fill="#A0704B"/>
|
|
<!-- Workbench legs -->
|
|
<rect x="6" y="18" width="4" height="8" fill="#6B4226"/>
|
|
<rect x="22" y="18" width="4" height="8" fill="#6B4226"/>
|
|
<!-- Anvil / item on top -->
|
|
<rect x="10" y="8" width="5" height="4" rx="1" fill="#8899AA"/>
|
|
<rect x="9" y="10" width="7" height="2" rx="1" fill="#778899"/>
|
|
<!-- Hammer -->
|
|
<rect x="19" y="4" width="4" height="4" rx="1" fill="#8899AA"/>
|
|
<rect x="20" y="8" width="2" height="5" fill="#A0704B"/>
|
|
</svg>
|