Skip to content
This repository was archived by the owner on Nov 16, 2022. It is now read-only.

Commit bacd958

Browse files
committed
[package] Changed version.
1 parent 663bcde commit bacd958

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material-docs/material-docs-documentation",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"private": false,
55
"description": "Documentation for Material Docs. material-docs - react framework for easy creating documentation site in material design style.",
66
"homepage": "http://material-docs.com/",

src/pages/GettingStarted/Installation/index.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import DocsPage from "@material-docs/core/components/DocsPage/DocsPage";
88
import {H1, H2, H3, H4} from "@material-docs/core/components";
99
import List from "@material-docs/core/components/List/List";
1010
import ListItem from "@material-docs/core/components/ListItem/ListItem";
11-
import Link from "@material-ui/core/Link";
1211
import Markdown from "@material-docs/core/components/Markdown/Markdown";
1312
import Code from "@material-docs/core/components/Code/Code";
1413
import Bold from "@material-docs/core/components/Bold/Bold";
14+
import Link from "@material-docs/core/components/Link";
1515

1616
const installCode = `
1717
// with npm
@@ -50,15 +50,15 @@ export default function Installation() {
5050
<Markdown>MaterialDocs is available as an [nmp package]()</Markdown>
5151
<H2>npm</H2>
5252
<Markdown>To install and save in your ```package.json``` dependencies, run:</Markdown>
53-
<Code theme={"darcula"}>{installCode}</Code>
53+
<Code themeLight={"darcula"}>{installCode}</Code>
5454
<H2>Material-UI</H2>
5555
<Markdown>Note, that __MaterialDocs__ based on [__Material-UI__]() framework. If you want to deeply
5656
customize UI, install:</Markdown>
57-
<Code theme={"darcula"}>{MUIInstallationCode}</Code>
57+
<Code themeLight={"darcula"}>{MUIInstallationCode}</Code>
5858
<H3>Material-UI Icons</H3>
5959
<Markdown>You can access [__Material-UI__]() svg icons by adding to your ```package.json``` next
6060
___package___:</Markdown>
61-
<Code theme={"darcula"}>{MUIIconsInstallationCode}</Code>
61+
<Code themeLight={"darcula"}>{MUIIconsInstallationCode}</Code>
6262
<H2>Info</H2>
6363
<Markdown>You can start using MaterialDocs with minimal front-end infrastructure. Package providing a lot of
6464
components to create great documentation site.</Markdown>
@@ -68,7 +68,9 @@ export default function Installation() {
6868
<ListItem>Read <Bold>Component APIs</Bold> tab and get to know how to manipulate with
6969
components.</ListItem>
7070
<ListItem>Read <Bold>Tutorials</Bold> tab to get instructions on different topics.</ListItem>
71-
<ListItem>Check <Link><Bold>source code on GitHub</Bold></Link> for best code understanding.</ListItem>
71+
<ListItem>Check <Link href={"https://github.com/material-docs/material-docs"}>
72+
<Bold>source code on GitHub</Bold>
73+
</Link> for best code understanding.</ListItem>
7274
</List>
7375
</DocsPage>
7476
);

0 commit comments

Comments
 (0)