Skip to content

Commit

Permalink
Upadte consts
Browse files Browse the repository at this point in the history
  • Loading branch information
iAdramelk committed Dec 4, 2019
1 parent 2d3dbfd commit 64b0749
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/consts.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
export const HEADER = 'header'

const WEBSITE_HOST = 'dvc.org'

export const META_BASE_TITLE = 'Data Version Control · DVC'
export const META_DESCRIPTION =
'Open-source version control system for Data Science and Machine Learning ' +
'projects. Git-like experience to organize your data, models, and ' +
'experiments.'
export const META_KEYWORDS =
'data version control machine learning models management'
export const META_SOCIAL_IMAGE = 'https://dvc.org/static/social-share.png'
export const META_SOCIAL_IMAGE = `https://${WEBSITE_HOST}/static/social-share.png`

export const FORUM_URL = 'https://discuss.dvc.org'
export const BLOG_URL = 'https://blog.dvc.org'
export const FORUM_URL = `https://discuss.${WEBSITE_HOST}`
export const BLOG_URL = `https://blog.${WEBSITE_HOST}`

0 comments on commit 64b0749

Please sign in to comment.