Skip to content

Commit 8d7626f

Browse files
committed
optimize images, add local search
1 parent f2d1fd4 commit 8d7626f

34 files changed

+442
-359
lines changed

docs/Rollup/App.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ https://0xhabitat.org/app/
1010

1111
#### **Connect**
1212
When opening the Habitat Rollup App, users can interact when clicking the "Connect" button in the top left sidebar.
13-
![img](https://hbtdocs.vercel.app/account.png)
13+
![img](/account.png)
1414

1515
#### **Account**
1616
https://0xhabitat.org/app/#habitat-account
1717

1818
#### **Interactions**
1919
Check the Tab "Balance" and open the dropdown menu, which gives plenty of options to choose from:
20-
![img](https://hbtdocs.vercel.app/options.png)
20+
![img](/options.png)
2121

2222
When interacting for the first time, please follow this flow:
23-
1. [Deposit HBT](https://docs.0xhabitat.org/Rollup/Deposit) - last time using ETH funds :)
24-
2. [Top-Up Gas Tank](https://docs.0xhabitat.org/Rollup/Gas%20Tank) ≈ 1-5 HBT is enough to start.
23+
1. [Deposit HBT](Deposit.md) - last time using ETH funds :)
24+
2. [Top-Up Gas Tank](GasTank.md) ≈ 1-5 HBT is enough to start.
2525
3. other options, unlocking after top-up:
2626
* deposit ERC20
2727
* transfer
2828
* vote/delegate
2929
* create communities/treasuries
30-
* withdraw/exit
30+
* withdraw/exit

docs/Rollup/Epochs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ title: 'Reward Pool Addresses'
55

66
# Habitat Epoch Reward Pool Addresses
77

8-
You can check the current epoch in your [account page](https://0xhabitat.org/app/#habitat-account) under "Rollup Rewards".
9-
<img src="https://user-images.githubusercontent.com/45236782/133755795-2b40a3e6-fb07-4d33-a971-82ea7776d196.png" alt="drawing" width="600"/>
8+
You can check the current epoch in your [account page](https://0xhabitat.org/app/#habitat-account) under "Rollup Rewards".
9+
<img src="/epochs.png" alt="drawing" width="600"/>
1010

1111
**Epoch #: address**
1212

docs/intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ __
1111
* **GitHub** // https://github.com/0xHabitat
1212
* **Twitter** // https://twitter.com/0xHabitat
1313
* **Blog** // https://0xhabitat.substack.com/
14-
* **Discord Server** // https://discord.gg/4Cu6vBZhDp
14+
* **Discord Server** // https://discord.com/invite/Pqdj73UTt6
1515
* **Habitat DAO China** // https://t.me/Habitat_China
1616

1717
## **Mainnet App** 🌈
@@ -24,6 +24,6 @@ https://0xhabitat.org/app/#habitat-communities
2424
https://0xhabitat.org/app/#habitat-account
2525

2626
## **One Pager**
27-
[![0xHabitat__onepager](https://user-images.githubusercontent.com/45236782/132473382-bc942651-d1ae-4a09-88ec-d6a5a1c1c8c6.png)](https://user-images.githubusercontent.com/45236782/132473382-bc942651-d1ae-4a09-88ec-d6a5a1c1c8c6.png)
27+
![0xHabitat__onepager](/onepager.png)
2828

2929
![banner](/banner.png)

docusaurus.config.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula');
88
const config = {
99
title: 'Habitat Docs',
1010
tagline: '',
11-
url: 'https://github.com/0xHabitat/docs',
11+
url: 'https://docs.0xhabitat.org/',
1212
baseUrl: '/',
1313
onBrokenLinks: 'throw',
1414
onBrokenMarkdownLinks: 'warn',
1515
favicon: 'img/favicon.ico',
1616
organizationName: '0xHabitat', // Usually your GitHub org/user name.
1717
projectName: 'docs', // Usually your repo name.
1818

19+
plugins: [require.resolve('@cmfcmf/docusaurus-search-local')],
20+
1921
presets: [
2022
[
2123
'@docusaurus/preset-classic',
@@ -25,7 +27,7 @@ const config = {
2527
routeBasePath: '/',
2628
sidebarPath: require.resolve('./sidebars.js'),
2729
// Please change this to your repo.
28-
editUrl: 'https://github.com/0xhabitat/docs',
30+
editUrl: 'https://github.com/0xHabitat/docs',
2931
},
3032
theme: {
3133
customCss: require.resolve('./src/css/custom.css'),
@@ -54,7 +56,7 @@ const config = {
5456
},
5557
items: [
5658
{
57-
href: 'https://github.com/0xhabitat',
59+
href: 'https://github.com/0xHabitat',
5860
label: 'GitHub',
5961
position: 'right',
6062
},
@@ -81,7 +83,7 @@ const config = {
8183
},
8284
{
8385
label: 'Discord',
84-
href: 'https://discord.gg/4Cu6vBZhDp',
86+
href: 'https://discord.com/invite/Pqdj73UTt6',
8587
},
8688
{
8789
label: 'Telegram',
@@ -94,7 +96,7 @@ const config = {
9496
items: [
9597
{
9698
label: 'GitHub',
97-
href: 'https://github.com/0xhabitat/habitat',
99+
href: 'https://github.com/0xHabitat/habitat',
98100
},
99101
],
100102
},

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"write-heading-ids": "docusaurus write-heading-ids"
1515
},
1616
"dependencies": {
17+
"@cmfcmf/docusaurus-search-local": "^0.8.0",
1718
"@docusaurus/core": "2.0.0-beta.9",
1819
"@docusaurus/preset-classic": "2.0.0-beta.9",
1920
"@mdx-js/react": "^1.6.21",
@@ -37,4 +38,4 @@
3738
"last 1 safari version"
3839
]
3940
}
40-
}
41+
}

static/Habitat_DAO_onepager.jpg

-1.42 MB
Binary file not shown.

static/account.png

-2.94 KB
Loading

static/activities.png

-26.1 KB
Binary file not shown.

static/balances.png

-10.9 KB
Binary file not shown.

static/banner.png

-508 KB
Loading

0 commit comments

Comments
 (0)