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

Commit 04e7706

Browse files
committed
docs: fix broken link to docz theme #86
1 parent 9ffb6f1 commit 04e7706

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

src/docs/documentation/customizing/creating-your-themes.mdx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ menu: Customizing
77

88
# Creating your themes
99

10-
One of the main features of Docz is that you can create your own theme from scratch and just use data parsed from Docz.
11-
We provide a bunch of components that can help you to create your own theme without pain.
10+
One of the main features of Docz is that you can create your own theme from scratch and just use the data parsed from Docz.
11+
We provide a bunch of components that can help you create your own theme with little effort.
1212

1313
Let's use this project structure through the following examples:
1414

@@ -24,6 +24,7 @@ doczrc.js
2424
package.json
2525
```
2626

27+
2728
The oldest way to acomplish that is by using the `theme` property inside the `doczrc.js` file. Now, if you want to create
2829
your own theme, just create a file located at `src/gatsby-theme-docz/index.js`
2930

@@ -189,7 +190,7 @@ Now you have a fully functional navigation to your documentation and you can sim
189190
// src/gatsby-theme-docz/index.js
190191
import React from 'react'
191192
import { theme, useConfig, ComponentsProvider } from 'docz'
192-
import { ThemeProvider } from 'emotion-theming'
193+
import { ThemeProvider } from 'theme-ui'
193194

194195
import { Menu } from './Menu'
195196
import * as components from './my-components'
@@ -275,4 +276,4 @@ How I told you, without pain and a lot of work your you can have a custom and ve
275276

276277
## Examples
277278

278-
If you wanna see an example of theme created, you can see the [source code](https://github.com/pedronauck/docz-website) of this website that was entire build using Docz or the [source code](https://github.com/pedronauck/docz/tree/master/core/docz-theme-default) of `docz-theme-default`.
279+
If you'd like to see an example of a theme, you can check the [source code](https://github.com/doczjs/docz/tree/master/core/gatsby-theme-docz) of `gatsby-theme-docz`.

0 commit comments

Comments
 (0)