docs: add logo

This commit is contained in:
Joakim Carlstein 2023-12-18 13:51:24 +01:00 committed by Joakim Carlstein
parent 445fe69e60
commit 418737f97d
12 changed files with 49 additions and 2 deletions

View file

@ -6,6 +6,43 @@ export default defineConfig({
integrations: [
starlight({
title: 'Emigrate',
favicon: '/favicon.ico',
head: [
{
tag: 'link',
attrs: {
rel: 'apple-touch-icon',
type: 'image/png',
href: '/apple-touch-icon.png',
sizes: '180x180',
},
},
{
tag: 'link',
attrs: {
rel: 'icon',
type: 'image/png',
href: '/favicon-32x32.png',
sizes: '32x32',
},
},
{
tag: 'link',
attrs: {
rel: 'icon',
type: 'image/png',
href: '/favicon-16x16.png',
sizes: '16x16',
},
},
{
tag: 'link',
attrs: {
rel: 'manifest',
href: '/site.webmanifest',
},
},
],
social: {
github: 'https://github.com/aboviq/emigrate',
},