-
Notifications
You must be signed in to change notification settings - Fork 394
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}` |