chore: add sitemap integration and update favicon

- Add @astrojs/sitemap and configure in astro.config.mjs
- Add favicon.svg, apple-touch-icon.png, icon-192.png, icon-512.png
- Add site.webmanifest and update Layout.astro to reference icons and
  manifest
- Update robots.txt to include sitemap
- Update favicon and icon links in Layout.astro
This commit is contained in:
fiatcode 2026-03-27 14:17:28 +07:00
parent 4eb84e1513
commit f88cc799cb
No known key found for this signature in database
11 changed files with 115 additions and 6 deletions

BIN
public/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Before After
Before After

16
public/favicon.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.1 KiB

BIN
public/icon-192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
public/icon-512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -1,5 +1,4 @@
User-agent: Googlebot
Disallow: /nogooglebot/
User-agent: *
Allow: /
Allow: /
Sitemap: https://fiatcode.dev/sitemap-xml

11
public/site.webmanifest Normal file
View file

@ -0,0 +1,11 @@
{
"name": "fiatcode",
"short_name": "fiatcode",
"icons": [
{ "src": "/icon-192.png", "sizes": "192x192", "type": "image/png" },
{ "src": "/icon-512.png", "sizes": "512x512", "type": "image/png" }
],
"theme_color": "#171717",
"background_color": "#171717",
"display": "standalone"
}