diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-10-17 16:34:09 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-10-17 16:39:19 -0700 |
| commit | e5c36899f2f42ed04ab85747ee80b622f2db0c55 (patch) | |
| tree | 5dc4bf33e74b01b596f2865418e2d88bf16111fa | |
| parent | beebbd4d1594f2c135666fc3558363f671d6506b (diff) | |
add favicon
| -rw-r--r-- | public/android-chrome-192x192.png | bin | 0 -> 56460 bytes | |||
| -rw-r--r-- | public/android-chrome-512x512.png | bin | 0 -> 262966 bytes | |||
| -rw-r--r-- | public/apple-touch-icon.png | bin | 0 -> 51059 bytes | |||
| -rw-r--r-- | public/favicon-16x16.png | bin | 0 -> 879 bytes | |||
| -rw-r--r-- | public/favicon-32x32.png | bin | 0 -> 2727 bytes | |||
| -rw-r--r-- | public/favicon.ico | bin | 0 -> 15406 bytes | |||
| -rw-r--r-- | public/site.webmanifest | 1 | ||||
| -rw-r--r-- | src/components/Footer.astro | 2 | ||||
| -rw-r--r-- | src/layouts/Layout.astro | 19 |
9 files changed, 20 insertions, 2 deletions
diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png Binary files differnew file mode 100644 index 0000000..c24971c --- /dev/null +++ b/public/android-chrome-192x192.png diff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png Binary files differnew file mode 100644 index 0000000..0d78afc --- /dev/null +++ b/public/android-chrome-512x512.png diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png Binary files differnew file mode 100644 index 0000000..5cff28c --- /dev/null +++ b/public/apple-touch-icon.png diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png Binary files differnew file mode 100644 index 0000000..b7bdb6e --- /dev/null +++ b/public/favicon-16x16.png diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png Binary files differnew file mode 100644 index 0000000..0e0f4aa --- /dev/null +++ b/public/favicon-32x32.png diff --git a/public/favicon.ico b/public/favicon.ico Binary files differnew file mode 100644 index 0000000..eeaf535 --- /dev/null +++ b/public/favicon.ico diff --git a/public/site.webmanifest b/public/site.webmanifest new file mode 100644 index 0000000..45dc8a2 --- /dev/null +++ b/public/site.webmanifest @@ -0,0 +1 @@ +{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
\ No newline at end of file diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 6670702..35dedae 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -8,7 +8,7 @@ import dataList from "../data/user.json"; <div class="footer-links"> <a - href="https://github.com/yourprofile" + href="https://github.com/pinapelz/Astrolink-moe" class="footer-link" aria-label="GitHub" > diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index e79c99d..8ebd2f2 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -15,7 +15,24 @@ const { title } = Astro.props; content="providing only the most moe of web services" /> <meta name="viewport" content="width=device-width" /> - <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> + <link + rel="apple-touch-icon" + sizes="180x180" + href="/apple-touch-icon.png" + /> + <link + rel="icon" + type="image/png" + sizes="32x32" + href="/favicon-32x32.png" + /> + <link + rel="icon" + type="image/png" + sizes="16x16" + href="/favicon-16x16.png" + /> + <link rel="manifest" href="/site.webmanifest" /> <link href="https://api.fontshare.com/v2/css?f[]=satoshi@400&display=swap" rel="stylesheet" |
