Skip to content

Commit

Permalink
Fix homepage title (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
drwpow authored Nov 6, 2023
1 parent 085ef43 commit 7017a11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default defineConfig({
},
transformHead(context) {
return [
['meta', {name: 'og:title', content: context.pageData.frontmatter.title ? `${context.pageData.frontmatter.title} | Cobalt` : `Cobalt: CI for your Design Tokens`}],
['meta', {name: 'og:title', content: context.pageData.frontmatter.title ? `${context.pageData.frontmatter.title} | Cobalt` : 'Cobalt: CI for your Design Tokens'}],
['meta', {name: 'og:description', content: context.pageData.frontmatter.description || 'Use Design Tokens Format Module tokens to generate CSS, Sass, JS/TS, universal JSON, and more.'}],
['meta', {name: 'og:image', content: `${HOSTNAME}/social.png`}],
['meta', {name: 'twitter:card', content: 'summary_large_image'}],
Expand Down
3 changes: 2 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
# https://vitepress.dev/reference/default-theme-home-page
layout: home

title: 'Cobalt: CI for your design tokens'
title: Cobalt
titleTemplate: CI for Design Tokens

hero:
name: Cobalt
Expand Down

0 comments on commit 7017a11

Please sign in to comment.