diff options
author | Valentin Popov <valentin@popov.link> | 2025-02-05 03:20:40 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-02-05 03:20:40 +0300 |
commit | 0deb65fde25b0e8545dc74b69136abe61908cc70 (patch) | |
tree | a051c8ed92f3898226473a5cfe5745932225164d /src | |
parent | 88464d0240150e6ab98b5f46b7e781b1a692c10c (diff) | |
download | popov.link-0deb65fde25b0e8545dc74b69136abe61908cc70.tar.xz popov.link-0deb65fde25b0e8545dc74b69136abe61908cc70.zip |
Added an icon for the website
Diffstat (limited to 'src')
-rw-r--r-- | src/components/Head.astro | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/Head.astro b/src/components/Head.astro index 9d7f39c..8ed2224 100644 --- a/src/components/Head.astro +++ b/src/components/Head.astro @@ -21,4 +21,9 @@ const { description, title } = Astro.props; <link href={canonicalURL} rel="canonical" /> <title>{title}</title> + + <link rel="icon" href="/favicon.png" /> + <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> + <link rel="manifest" href="/manifest.json" /> + <meta name="theme-color" content="#ffffff" /> </head> |