Skip to content

Commit a0ee5af

Browse files
committed
feat: Enhance documentation site metadata and branding
1 parent 647bcd4 commit a0ee5af

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

docs/.vitepress/config.mts

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ bundledLanguages['ssh'] = {
2020
export default defineConfig({
2121
lang: 'en-US',
2222
title: "Coolify Docs",
23-
description: "Self hosting with super powers",
23+
description: "Self hosting with superpowers: An open-source & self-hostable Heroku / Netlify / Vercel alternative.",
2424
appearance: 'force-dark', // 'dark' allows user to change theme
2525
base: '/docs/',
2626
cleanUrls: true,
@@ -32,11 +32,24 @@ export default defineConfig({
3232
},
3333

3434
head: [
35-
['link', { rel: 'icon', href: '/favicon.ico' }]
35+
['meta', { name: 'theme-color', content: '#000000' }],
36+
['meta', { property: 'og:type', content: 'website' }],
37+
['meta', { property: 'og:title', content: 'Coolify Docs' }],
38+
['meta', { property: 'og:url', content: 'https://coolify.io/docs/' }],
39+
['meta', { property: 'og:description', content: 'Self hosting with superpowers: An open-source & self-hostable Heroku / Netlify / Vercel alternative.' }],
40+
['meta', { property: 'og:image', content: 'https://coolcdn.b-cdn.net/assets/coolify/og-image-docs.png' }],
41+
['meta', { property: 'twitter:site', content: '@coolifyio' }],
42+
['meta', { property: 'twitter:card', content: 'summary_large_image' }],
43+
['meta', { property: 'twitter:title', content: 'Coolify Docs' }],
44+
['meta', { property: 'twitter:description', content: 'Self hosting with superpowers: An open-source & self-hostable Heroku / Netlify / Vercel alternative.' }],
45+
['meta', { property: 'twitter:url', content: 'https://coolify.io/docs/' }],
46+
['meta', { property: 'twitter:image', content: 'https://coolcdn.b-cdn.net/assets/coolify/og-image-docs.png' }],
47+
['link', { rel: 'icon', href: '/favicon.ico' }],
48+
['script', { src: 'https://analytics.coollabs.io/js/script.js', 'data-domain': 'coolify.io/docs' }],
3649
],
3750
themeConfig: {
3851
// https://vitepress.dev/reference/default-theme-config
39-
logo: '/logo.svg',
52+
logo: '/coolify-logo-transparent.png',
4053
nav: [
4154
{ text: 'Coolify Cloud', link: 'https://coolify.io/pricing/' },
4255
{
7.69 KB
Loading

0 commit comments

Comments
 (0)