diff --git a/docusaurus.config.js b/docusaurus.config.js index 9631f72..304c63e 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -9,7 +9,7 @@ import remarkGithubAdmonitionsToDirectives from "remark-github-admonitions-to-di /** @type {import('@docusaurus/types').Config} */ const config = { - title: 'Keychain Documentation', + title: 'Keychain MDIP', tagline: '', favicon: 'img/favicon.ico', @@ -73,21 +73,20 @@ const config = { alt: 'My Site Logo', src: 'img/logo.svg', },*/ - /* items: [ { type: 'docSidebar', sidebarId: 'tutorialSidebar', position: 'left', - label: 'Tutorial', + label: 'Documentation', }, - {to: '/blog', label: 'Blog', position: 'left'}, + //{to: '/blog', label: 'Blog', position: 'left'}, { href: 'https://github.com/KeychainMDIP/kc/tree/main/doc', label: 'GitHub', position: 'right', }, - ],*/ + ], }, footer: { style: 'dark', diff --git a/kc b/kc index 4733361..0e646d5 160000 --- a/kc +++ b/kc @@ -1 +1 @@ -Subproject commit 473336106118b08b1468be77e01b88ad55314024 +Subproject commit 0e646d5cd3413502f43f9a46fbfb17046cd0b999 diff --git a/src/components/HomepageFeatures/index.js b/src/components/HomepageFeatures/index.js index 5041a22..cb5b43a 100644 --- a/src/components/HomepageFeatures/index.js +++ b/src/components/HomepageFeatures/index.js @@ -14,24 +14,23 @@ const FeatureList = [ link: 'https://github.com/keychainmdip/kc' }, { - title: 'Documentation', + title: 'MDIP Scheme', Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default, description: ( <> ), - link: '/docs' + link: '/docs/DID-scheme' }, - /*{ - title: 'Powered by React', + { + title: 'User Manual', Svg: require('@site/static/img/undraw_docusaurus_react.svg').default, description: ( <> - Extend or customize your website layout by reusing React. Docusaurus can - be extended while reusing the same header and footer. ), - },*/ + link: '/docs/CLI-user-manual' + }, ]; function Feature({Svg, title, description, link}) { diff --git a/src/pages/index.js b/src/pages/index.js index 9466dc9..47800e3 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -6,7 +6,8 @@ import HomepageFeatures from '@site/src/components/HomepageFeatures'; import Heading from '@theme/Heading'; import styles from './index.module.css'; -import logo from '@site/static/img/keychain-logo.png' +import mdipLogo from '@site/static/img/mdip-logo.png' +import keychainLogoDark from '@site/static/img/keychain-logo-dark.png' function HomepageHeader() { @@ -15,17 +16,30 @@ function HomepageHeader() {
-
- Multi Dimensional Identity Protocol +
+ MDIP

{siteConfig.tagline}

-
+
+ MDIP stands for Multi Dimensional Identity Protocol. + It is an open-source protocol and W3C-compliant DID scheme, + designed to create an identity layer for the internet. +
+ With MDIP, entities on the internet (people, organizations, etc), + can create and manage individual aspects of their digital identity. {/* Docusaurus Tutorial - 5min ⏱️ */}
+
+ +
+
+
+ Keychain is a proof of concept tool to demonstrate how the MDIP protocol can be used. +
); @@ -35,7 +49,7 @@ export default function Home() { const {siteConfig} = useDocusaurusContext(); return (
diff --git a/src/pages/index.module.css b/src/pages/index.module.css index 91c7757..8730d71 100644 --- a/src/pages/index.module.css +++ b/src/pages/index.module.css @@ -8,7 +8,7 @@ position: relative; overflow: hidden; background-color: black; - color: #5375FF; + color: white; } @media screen and (max-width: 996px) { @@ -23,6 +23,13 @@ justify-content: center; } +.copy { + display: flex; + align-items: center; + justify-content: left; + color: white; +} + .main { background-color: black; } \ No newline at end of file diff --git a/static/img/keychain-logo-dark.png b/static/img/keychain-logo-dark.png new file mode 100644 index 0000000..5ef4c59 Binary files /dev/null and b/static/img/keychain-logo-dark.png differ diff --git a/static/img/mdip-logo.png b/static/img/mdip-logo.png new file mode 100644 index 0000000..0b46b12 Binary files /dev/null and b/static/img/mdip-logo.png differ