Compare commits
2 commits
1f7ec956ca
...
1e261d1a1b
Author | SHA1 | Date | |
---|---|---|---|
1e261d1a1b | |||
f6047894e0 |
2 changed files with 9 additions and 1 deletions
|
@ -13,7 +13,8 @@ export default defineNuxtConfig({
|
||||||
// { property: 'og:image', content: 'missing' },
|
// { property: 'og:image', content: 'missing' },
|
||||||
{ property: 'og:url', content: 'https://gorb.app' },
|
{ property: 'og:url', content: 'https://gorb.app' },
|
||||||
{ property: 'og:type', content: 'website' },
|
{ property: 'og:type', content: 'website' },
|
||||||
{ property: 'og:site_name', content: 'Gorb' }
|
{ property: 'og:site_name', content: 'Gorb' },
|
||||||
|
{ property: 'theme-color', content: "#c200c2" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,13 @@
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
|
|
||||||
|
useHead({
|
||||||
|
title: "Gorb",
|
||||||
|
meta: [
|
||||||
|
{ name: "description", content: "Welcome to Gorb, the Open-Source Chat App!" }
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue