Skip to content

Commit

Permalink
Create Archive for deprecated dapps (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrePanin authored Oct 16, 2024
1 parent e06a694 commit 5d992c7
Show file tree
Hide file tree
Showing 16 changed files with 42 additions and 17 deletions.
4 changes: 0 additions & 4 deletions deprecated_dapps/Governance/_category_.json

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_label: DAO
sidebar_position: 1
sidebar_position: 2
---

# Decentralized Autonomous Organization
Expand Down
6 changes: 6 additions & 0 deletions docs/examples/archive/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"label": "Archive",
"position": 8,
"className": "archive-category"
}

12 changes: 12 additions & 0 deletions docs/examples/archive/archive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
sidebar_label: Archive
sidebar_position: 1
---

# Archive of Program Examples

This folder contains examples of programs and use cases that may include outdated or no longer maintained code. These examples were created during the early stages of Gear Protocol's development.

However, the use cases themselves remain relevant and can be implemented and deployed on the Vara network.

The source code for these examples is still available on GitHub and can serve as a valuable resource for understanding how to develop using the low-level [`gstd`](/docs/build/gstd/) library. Anyone can try compiling and deploying them to testnet or mainnet to see how they function.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_label: Crowdsale Program Mechanics
sidebar_position: 6
sidebar_position: 7
---

# Crowdsale Program Mechanics
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_label: Dutch Auction
sidebar_position: 3
sidebar_position: 8
---

# Dutch Auction
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 2
sidebar_position: 4
---

# Escrow
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_label: Galactic Express
sidebar_position: 7
sidebar_position: 9
---

# Galactic Express Game
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 5
sidebar_position: 6
---

# Game of Chance
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_label: VRNFT (ERC-4907)
sidebar_position: 4
sidebar_position: 12
---

# Vara Rentable Non-Fungible Token
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 4
sidebar_position: 10
---

# NFT pixelboard
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_label: OnChain NFT
sidebar_position: 2
sidebar_position: 11
---

# On-chain gNFT assets
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_label: Rock Paper Scissors
sidebar_position: 4
sidebar_position: 5
---

# Rock Paper Scissors
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 2
sidebar_position: 3
---

# Supply Chain
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 6
sidebar_position: 13
---

# Tequila Train
Expand Down
13 changes: 12 additions & 1 deletion src/css/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@
.typo-title-1 {
@apply font-semibold lg:font-medium text-[42px] md:text-[46px] lg:text-[52px] xl:text-[62px] 2xl:text-[72px] leading-[50px] md:leading-[55px] lg:leading-[62px] xl:leading-[74px] 2xl:leading-[86px];
}
}

}

html {
font-size: 16px;
Expand Down Expand Up @@ -241,3 +241,14 @@ div[class^="announcementBar"][role="banner"] {
display: none;
}
}

.archive-category {
color: gray;
font-style: italic;
opacity: 0.5;

&:hover {
color: darkgray;
opacity: 0.7;
}
}

0 comments on commit 5d992c7

Please sign in to comment.