Monorepo for Tangled

docs: add favicons to the site

Signed-off-by: oppiliappan <me@oppi.li>

+8
+3
docs/template.html
··· 35 35 $endfor$ 36 36 37 37 <link rel="preload" href="/static/fonts/InterVariable.woff2" as="font" type="font/woff2" crossorigin /> 38 + <link rel="icon" href="/static/logos/dolly.ico" sizes="48x48"/> 39 + <link rel="icon" href="/static/logos/dolly.svg" sizes="any" type="image/svg+xml"/> 40 + <link rel="apple-touch-icon" href="/static/logos/dolly.png"/> 38 41 39 42 </head> 40 43 <body class="bg-white dark:bg-gray-900 flex flex-col min-h-svh">
+5
nix/pkgs/docs.nix
··· 52 52 cp -f ${inter-fonts-src}/InterVariable*.ttf $out/static/fonts/ 53 53 cp -f ${ibm-plex-mono-src}/fonts/complete/woff2/IBMPlexMono*.woff2 $out/static/fonts/ 54 54 55 + # favicons 56 + ${dolly}/bin/dolly -output $out/static/logos/dolly.png -size 180x180 57 + ${dolly}/bin/dolly -output $out/static/logos/dolly.ico -size 48x48 58 + ${dolly}/bin/dolly -output $out/static/logos/dolly.svg -color currentColor 59 + 55 60 # styles 56 61 cd ${src} && ${tailwindcss}/bin/tailwindcss -i input.css -o $out/stylesheet.css 57 62 ''