Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
scarletkc committed Jan 26, 2025
1 parent cc8c95a commit 57bfbff
Show file tree
Hide file tree
Showing 5 changed files with 98 additions and 92 deletions.
1 change: 1 addition & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export default defineConfig({
{text: 'How can I get FOGMOE Token?', link: '/docs/get-fogmoe-token' },
{text: 'Tokenomics', link: '/docs/tokenomics' },
{text: 'DAO', link: '/docs/DAO' },
{text: 'Early Fundraising', link: '/docs/early-fundraising' },
]
}
],
Expand Down
90 changes: 90 additions & 0 deletions docs/en/docs/early-fundraising.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
# Direct Sale Progress
::: info Direct Sale Progress
<div class="sale-container">
<div class="sale-header">
<h3>Early Fundraising</h3>
<a href="https://x.com/FOG_MOE/status/1882997027417809110" target="_blank" class="x-link">
View Details →
</a>
</div>

<div class="progress-bar">
<div class="progress" style="width: 0%;"></div>
</div>

<div class="sale-stats">
<div class="stat-item">
<span class="stat-label">Raised</span>
<span class="stat-value">0.0/2.0 SOL</span>
</div>
<div class="stat-item">
<span class="stat-label">Remaining</span>
<span class="stat-value">500K/500K FOGMOE</span>
</div>
</div>
</div>

<style>
.sale-container {
padding: 1.5rem;
border-radius: 8px;
background: var(--vp-c-bg-soft);
}

.sale-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.5rem;
}

.x-link {
color: var(--vp-c-brand);
text-decoration: none;
font-size: 0.9rem;
}

.x-link:hover {
text-decoration: underline;
}

.progress-bar {
width: 100%;
height: 10px;
background: var(--vp-c-bg);
border-radius: 5px;
overflow: hidden;
}

.progress {
height: 100%;
background: var(--vp-c-brand);
transition: width 0.3s ease;
}

.sale-stats {
display: flex;
justify-content: space-between;
margin-top: 1rem;
flex-wrap: wrap;
gap: 1rem;
}

.stat-item {
display: flex;
flex-direction: column;
align-items: center;
}

.stat-label {
font-size: 0.9rem;
color: var(--vp-c-text-2);
}

.stat-value {
font-size: 1.1rem;
font-weight: 600;
color: var(--vp-c-text-1);
}
</style>
:::
2 changes: 2 additions & 0 deletions docs/en/docs/get-fogmoe-token.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ The primary way to obtain FOGMOE Token is through participating in community act
### Buy
Currently, FOGMOE Token cannot be purchased directly with fiat money.

### [Direct Sale](/docs/early-fundraising.md)

## Stay Updated
To catch the latest news on how to get FOGMOE Token, make sure to follow our social media accounts. We regularly share updates about upcoming airdrops, community activities, and any changes to the token's status.

Expand Down
5 changes: 4 additions & 1 deletion docs/en/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ $FOGMOE is a token on the Solana blockchain, created by the FOGMOE team with the

**Launch Date:** December 31, 2024

**Contract Address:** AdFiMA3G8cEAmQq4HZHVTsoJMYyCBGvbF9xsdrCP8Md2
**Contract Address:**
```
AdFiMA3G8cEAmQq4HZHVTsoJMYyCBGvbF9xsdrCP8Md2
```

[View on Solscan](https://solscan.io/token/AdFiMA3G8cEAmQq4HZHVTsoJMYyCBGvbF9xsdrCP8Md2)
92 changes: 1 addition & 91 deletions docs/en/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,94 +15,4 @@ hero:
- theme: alt
text: Trade $FOGMOE
link: /docs/get-fogmoe-token/
---

::: info Direct Sale Progress
<div class="sale-container">
<div class="sale-header">
<h3>Early Fundraising</h3>
<a href="https://x.com/FOG_MOE/status/1882997027417809110" target="_blank" class="x-link">
View Details →
</a>
</div>

<div class="progress-bar">
<div class="progress" style="width: 0%;"></div>
</div>

<div class="sale-stats">
<div class="stat-item">
<span class="stat-label">Raised</span>
<span class="stat-value">0.0/2.0 SOL</span>
</div>
<div class="stat-item">
<span class="stat-label">Remaining</span>
<span class="stat-value">500K/500K FOGMOE</span>
</div>
</div>
</div>

<style>
.sale-container {
padding: 1.5rem;
border-radius: 8px;
background: var(--vp-c-bg-soft);
}

.sale-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.5rem;
}

.x-link {
color: var(--vp-c-brand);
text-decoration: none;
font-size: 0.9rem;
}

.x-link:hover {
text-decoration: underline;
}

.progress-bar {
width: 100%;
height: 10px;
background: var(--vp-c-bg);
border-radius: 5px;
overflow: hidden;
}

.progress {
height: 100%;
background: var(--vp-c-brand);
transition: width 0.3s ease;
}

.sale-stats {
display: flex;
justify-content: space-between;
margin-top: 1rem;
flex-wrap: wrap;
gap: 1rem;
}

.stat-item {
display: flex;
flex-direction: column;
align-items: center;
}

.stat-label {
font-size: 0.9rem;
color: var(--vp-c-text-2);
}

.stat-value {
font-size: 1.1rem;
font-weight: 600;
color: var(--vp-c-text-1);
}
</style>
:::
---

0 comments on commit 57bfbff

Please sign in to comment.