diff --git a/README.md b/README.md index 87cb421..356e371 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ There are many ways to get in touch: 1. Submit via [SourceHut todo](https://todo.sr.ht/~ayoayco/wcb) 1. Start a [GitHub discussion](https://github.com/ayoayco/wcb/discussions) 1. Email me: [ayo@ayco.io](mailto:ayo@ayco.io) +1. Join via Discord: [Ayo's Projects](https://discord.gg/kkvW7GYNAp) ## Inspirations and thanks diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index 4b9375a..46c6fd4 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -14,6 +14,7 @@ export default defineConfig({ npm: 'https://www.npmjs.com/package/web-component-base', sourcehut: 'https://sr.ht/~ayoayco/wcb/', github: 'https://github.com/ayoayco/wcb/', + discord: 'https://discord.gg/kkvW7GYNAp', }, sidebar: [ { @@ -42,6 +43,23 @@ export default defineConfig({ components: { Footer: './src/components/Attribution.astro', }, + head: [ + { + tag: 'link', + attrs: { + rel: 'mask-icon', + href: 'mask-icon.svg', + color: '#000000', + }, + }, + { + tag: 'link', + attrs: { + rel: 'apple-touch-icon', + href: 'apple-touch-icon.png', + }, + }, + ], }), ], }) diff --git a/docs/public/apple-touch-icon.png b/docs/public/apple-touch-icon.png new file mode 100644 index 0000000..fdf8562 Binary files /dev/null and b/docs/public/apple-touch-icon.png differ diff --git a/docs/public/favicon.svg b/docs/public/favicon.svg index cba5ac1..a7799ee 100644 --- a/docs/public/favicon.svg +++ b/docs/public/favicon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/public/mask-icon.svg b/docs/public/mask-icon.svg new file mode 100644 index 0000000..93d5500 --- /dev/null +++ b/docs/public/mask-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/public/touch-icon-large.png b/docs/public/touch-icon-large.png new file mode 100644 index 0000000..a4af3f1 Binary files /dev/null and b/docs/public/touch-icon-large.png differ diff --git a/docs/src/components/Attribution.astro b/docs/src/components/Attribution.astro index 411893f..d9b1c60 100644 --- a/docs/src/components/Attribution.astro +++ b/docs/src/components/Attribution.astro @@ -5,6 +5,9 @@ import Footer from '@astrojs/starlight/components/Footer.astro'