Skip to content

Commit 27b7130

Browse files
committed
init
0 parents  commit 27b7130

27 files changed

+16919
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Deploy Docusaurus site to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- master # Change this if your branch is not main
7+
8+
jobs:
9+
build-and-deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v2
14+
15+
- name: Set up Node.js
16+
uses: actions/setup-node@v2
17+
with:
18+
node-version: "20"
19+
20+
- name: Install dependencies
21+
run: npm install
22+
23+
- name: Build Docusaurus site
24+
run: npm run build
25+
26+
- name: Deploy to GitHub Pages
27+
uses: peaceiris/actions-gh-pages@v3
28+
with:
29+
github_token: ${{ secrets.GITHUB_TOKEN }}
30+
publish_dir: ./build

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Dependencies
2+
/node_modules
3+
4+
# Production
5+
/build
6+
7+
# Generated files
8+
.docusaurus
9+
.cache-loader
10+
11+
# Misc
12+
/archive
13+
.DS_Store
14+
.env.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[cary0x.github.io](https://cary0x.github.io)

docs/01-index.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: Welcome to Pond0x Resources
3+
position: 1
4+
---
5+
6+
# 🌊 Pond0x Resources: Guides, Information, & Solutions
7+
8+
Welcome to your go-to resource for navigating the multifaceted world of Pond0x! This site is here to demystify the Pond0x ecosystem, offering accurate information, step-by-step guides, and clear answers to common issues.
9+
10+
## 🔍 What You'll Find Here
11+
12+
- **Guides**: From mining and swapping to referrals and locking, these guides are designed to help you get the most out of every Pond0x feature, whether you're new to crypto or a seasoned user.
13+
14+
- **Information**: Get up-to-date explanations on Pond0x's latest updates and features, including behind-the-scenes insights from the project’s codebase. Everything here is based on facts to help reduce the uncertainty that can often accompany a fast-moving project.
15+
16+
- **Issues & Solutions**: Find answers to frequently encountered issues, with detailed solutions when available. My aim is to make Pond0x smoother to use and less mysterious, so you can focus on what matters—participating in the ecosystem and making the most of your experience.
17+
18+
## 🤝 For the Community, By the Community
19+
20+
I'm Cary0x, an independent developer and analyst passionate about Pond0x. I created these resources to bring clarity, optimism, and actionable information to our community. I’ll keep updating this site as the project grows, with new guides, FAQs, and insights.
21+
22+
Let’s dive in and make Pond0x a great place for everyone—together.
23+
24+
> _“Clarity for the community, growth for the ecosystem.”_
25+
26+
---
27+
28+
Explore the guides, find the answers you need, and let’s keep building a positive Pond0x experience!

docs/_category_.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"label": "Docs",
3+
"position": 1,
4+
"link": {
5+
"type": "generated-index",
6+
"description": "abc."
7+
}
8+
}

docs/guides/99-Infographics.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
sidebar_position: 99
3+
---
4+
5+
# Infographics
6+
7+
Mining v1.9
8+
9+
![Mining Guide v1.9](../../static/img/PondGuide1.9.png)

docs/guides/_category_.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"label": "Guides",
3+
"position": 2,
4+
"link": {
5+
"description": "5 minutes to learn the most important Docusaurus concepts."
6+
}
7+
}

docs/guides/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
sidebar_position: 1
3+
---
4+
5+
# Guides
6+
7+
Mining v1.9
8+
9+
![Mining Guide v1.9](../../static/img/PondGuide1.9.png)

docs/issues/_category_.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"label": "Issues",
3+
"position": 3,
4+
"link": {
5+
"type": "generated-index",
6+
"description": "abc."
7+
}
8+
}

docs/issues/index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
sidebar_position: 1
3+
---
4+
5+
# Issues

0 commit comments

Comments
 (0)