diff options
Diffstat (limited to 'src/components/Head.astro')
-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> |