Assets Directory

This directory contains static assets for the website.

Favicon Generation

To generate favicon.ico from logo.svg, you can use one of these methods:

Option 1: Online converter

Visit https://cloudconvert.com/svg-to-ico and upload logo.svg

Option 2: ImageMagick (command line)

convert logo.svg -resize 32x32 favicon.ico

Option 3: GIMP

  1. Open logo.svg in GIMP
  2. Scale to 32x32 pixels
  3. Export as favicon.ico

Option 4: Inkscape

inkscape logo.svg --export-filename=favicon.png -w 32 -h 32
convert favicon.png favicon.ico

Note: The website currently uses SVG favicon which works in most modern browsers. The .ico fallback is for older browsers.