Compare commits

..

2 commits

Author SHA1 Message Date
1e261d1a1b
feat: set custom title and description for homepage
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2025-05-05 11:18:09 +02:00
f6047894e0
feat: add Discord embed color meta tag 2025-05-05 11:16:24 +02:00
2 changed files with 9 additions and 1 deletions

View file

@ -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" }
] ]
} }
} }

View file

@ -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>