diff --git a/README.md b/README.md index ed56da9..4baf232 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,10 @@ # Legacy-Docs Documentation about Minecraft: Legacy Console Edition with Vue Press + +## To Build + +```bash +yarn install +yarn docs:build +``` diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 0ea5d57..9b857c0 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -3,7 +3,7 @@ import { searchPlugin } from '@vuepress/plugin-search' import sidebar from './sidebar'; let title = 'Minecraft Legacy Docs'; -let description = 'Just playing around'; +let description = 'Documentation about Minecraft: Legacy Console Edition'; export default { base: '/Legacy-Docs/', @@ -13,26 +13,26 @@ export default { head: [ ['meta', { charset: 'utf-8' }], ['meta', { name: 'viewport', content: 'width=device-width, initial-scale=1.0' }], - // ['link', { rel: 'icon', href: '/favicon.png' }], - ['meta', { name: 'theme-color', content: '#27ae60' }], + ['link', { rel: 'icon', href: '/favicon.png' }], + ['meta', { name: 'theme-color', content: '#fa2426' }], ['meta', { name: 'twitter:card', content: 'summary' }], ['meta', { property: 'og:title', content: title }], ['meta', { property: 'og:description', content: description }], ['meta', { property: 'og:type', content: 'website' }], - // ['meta', { property: 'og:url', content: 'https://example.com/' }], + ['meta', { property: 'og:url', content: 'https://minecraft-manipulator.github.io/Legacy-Docs/' }], ['meta', { property: 'og:locale', content: 'en_US' }], - // ['meta', { property: 'og:image', content: 'https://example.com/' }], + ['meta', { property: 'og:image', content: 'https://minecraft-manipulator.github.io/Legacy-Docs/' }], ], theme: defaultTheme({ sidebar, contributors: true, - repo: 'ModifiedCommand/Legacy-Docs', - //logo: '/favicon.png', + repo: 'Minecraft-Manipulator/Legacy-Docs', + logo: '/favicon.png', sidebarDepth: 2, docsDir: 'docs', editLink: true, lastUpdated: true, - colorMode: 'dark' + colorMode: 'auto' }), plugins: [ searchPlugin({ diff --git a/docs/.vuepress/public/favicon.png b/docs/.vuepress/public/favicon.png new file mode 100644 index 0000000..4bb02d8 Binary files /dev/null and b/docs/.vuepress/public/favicon.png differ diff --git a/docs/.vuepress/styles /index.scss b/docs/.vuepress/styles/index.scss similarity index 84% rename from docs/.vuepress/styles /index.scss rename to docs/.vuepress/styles/index.scss index 05f0521..80d5bbe 100644 --- a/docs/.vuepress/styles /index.scss +++ b/docs/.vuepress/styles/index.scss @@ -1,13 +1,13 @@ :root { // brand colors - --c-brand: #27ae60; - --c-brand-light: #2ecc71; + --c-brand: #fa2426; + --c-brand-light: #f95c64; } html.dark { // brand colors - --c-brand: #27ae60; - --c-brand-light: #2ecc71; + --c-brand: #fa2426; + --c-brand-light: #f95c64; // background colors --c-bg: #121212;