Skip to content

Commit 3440c45

Browse files
Merge pull request #4 from airchains-network/fix/sidebar-patch-1
docs: add slugs for concepts section
2 parents 7df229e + d444158 commit 3440c45

File tree

8 files changed

+21
-10
lines changed

8 files changed

+21
-10
lines changed

docs/data-availability/monolithic-vs-modular.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
id: monolithic-vs-modular
33
title: Monolithic vs Modular
44
description: Monolithic vs Modular approach in Airchains Framework
5+
slug: /concepts/data-availability/monolithic-vs-modular
56
sidebar_position: 1
67
---
78

docs/framework.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ id: framework
33
title: Framework
44
description: A description of my new page.
55
sidebar_position: 2
6+
slug: /concepts/framework,
67
---
78

89
# Framework
@@ -14,8 +15,8 @@ Airchains Framework: Simplifying blockchain innovation with a versatile, secure,
1415
The Airchains Framework is a versatile and powerful tool for building your own custom blockchain parts. It works with popular blockchain networks like Ethereum, Solana, and Cosmos, and lets you choose where to store your data with options like Celestia and Avail. It's super secure thanks to robust zero-knowledge proofs (ZKPs) and fully homomorphic encryption (FHE), which ensures that data stays encrypted no matter what.
1516

1617
<img src="/img/consensus.png" alt="Overview" style={{
17-
display: 'flex',
18-
justifyContent: 'center',
19-
alignItems: 'center',
18+
display: 'flex',
19+
justifyContent: 'center',
20+
alignItems: 'center',
2021

2122
}}/>

docs/intro-to-zkfhe/fully-homomorphic-encryption.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
id: fully-homomorphic-encryption
33
title: Fully Homomorphic Encryption
44
description: Zero-Knowledge Proofs in Airchains Framework
5+
slug: /concepts/intro-to-zkfhe/fully-homomorphic-encryption
56
sidebar_position: 3
67
---
78

docs/intro-to-zkfhe/zk-proofs.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ id: zk-proofs
33
title: ZK Proofs
44
description: Zero-Knowledge Proofs in Airchains Framework
55
sidebar_position: 2
6+
slug: /concepts/intro-to-zkfhe/zk-proofs
67
---
78

89
# ZK Proofs
@@ -65,9 +66,9 @@ Next, the prover `P`, utilizing the proving key `pk`, public input `x`, and a se
6566
Finally, the verifier `V` checks the validity of the proof by executing `V(vk, w.pub(), prf)`, which confirms the truth of the claim if the proof prf is valid.
6667

6768
<img src="/img/proof.png" alt="Overview" style={{
68-
display: 'flex',
69-
justifyContent: 'center',
70-
alignItems: 'center',
69+
display: 'flex',
70+
justifyContent: 'center',
71+
alignItems: 'center',
7172

7273
}}/>
7374

docs/intro-to-zkfhe/zk-snark-and-fhe-integration.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
id: zk-snark-and-fhe-integration
33
title: ZK Snark and FHE Integration
44
description: Zero-Knowledge Proofs in Airchains Framework
5+
slug: /concepts/intro-to-zkfhe/zk-snark-and-fhe-integration
56
sidebar_position: 3
67
---
78

docs/prove-schemes-and-curves.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
id: prove-schemes-and-curves
33
title: Prove Schemes and Curves
44
description: Prove Schemes and Curves in Airchains Framework
5+
slug: /concepts/prove-schemes-and-curves
56
sidebar_position: 4
67
---
78

docs/sequencers.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
id: sequencers
33
title: Sequencers
44
description: Sequencers are used to sequence transactions in a deterministic order.
5+
slug: /concepts/sequencers
56
sidebar_position: 5
67
---
78

sidebars.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const sidebars = {
2626
},
2727
{
2828
type: "html",
29-
value: '<div class="sidebar-heading">Concepts</div>', // Custom heading
29+
value: '<div class="sidebar-heading">Concepts</div>',
3030
},
3131
{
3232
type: "doc",
@@ -57,11 +57,15 @@ const sidebars = {
5757
type: "category",
5858
label: "Data Availability",
5959
className: "custom-sidebar-item",
60+
link: {
61+
type: "doc",
62+
id: "data-availability/data-availability",
63+
},
6064
items: ["data-availability/monolithic-vs-modular"],
6165
},
6266
{
6367
type: "html",
64-
value: '<div class="sidebar-heading">Releases</div>', // Custom heading
68+
value: '<div class="sidebar-heading">Releases</div>',
6569
},
6670
{
6771
type: "doc",
@@ -71,7 +75,7 @@ const sidebars = {
7175

7276
{
7377
type: "html",
74-
value: '<div class="sidebar-heading">Junction</div>', // Custom heading
78+
value: '<div class="sidebar-heading">Junction</div>',
7579
},
7680
{
7781
type: "category",
@@ -99,7 +103,7 @@ const sidebars = {
99103
},
100104
{
101105
type: "html",
102-
value: '<div class="sidebar-heading">Rollups</div>', // Custom heading
106+
value: '<div class="sidebar-heading">Rollups</div>',
103107
},
104108
{
105109
type: "doc",

0 commit comments

Comments
 (0)