diff --git a/components/Card/Card.tsx b/components/Card/Card.tsx index c779321b..d41509e9 100644 --- a/components/Card/Card.tsx +++ b/components/Card/Card.tsx @@ -18,8 +18,8 @@ function Card({ image, title, description, href }: CardProps) { target="_blank" rel="noopener noreferrer" > -
- {title} +
{/* Adjust height as needed to match your design */} + {title}

{title}

diff --git a/components/EcosystemApps/EcosystemApps.tsx b/components/EcosystemApps/EcosystemApps.tsx index 6625fef7..dcd2f39a 100644 --- a/components/EcosystemApps/EcosystemApps.tsx +++ b/components/EcosystemApps/EcosystemApps.tsx @@ -12,7 +12,7 @@ const EcosystemApps = () => { appData.forEach(app => app.tags.forEach(tag => tags.add(tag))); setAllTags(Array.from(tags)); }, []); - // Filter by "title" and "tag" fields from appData.ts + // Filter by "title" and "tag" fields from appData.ts // Filter by "title" and "tag" fields from appData.ts const filteredApps = useMemo(() => ( appData.filter(app => app.title.toLowerCase().includes(searchTerm.toLowerCase()) || diff --git a/pages/user-guides/block-explorers.mdx b/pages/user-guides/block-explorers.mdx index 0e26bd3e..2fa76a91 100644 --- a/pages/user-guides/block-explorers.mdx +++ b/pages/user-guides/block-explorers.mdx @@ -1,4 +1,5 @@ import { Tabs } from "nextra/components"; +import { Callout } from "nextra/components"; # Block Explorers @@ -18,7 +19,9 @@ Most block explorers offer tools for viewing, and sometimes even interacting wit - Smart Contracts: Query smart contract states, deployments and interactions with other wallets or addresses. Some may include the raw code for the contract. -> 📘 Note: In rare cases, some information may be misinterpreted. Off-chain data should be used as a guide only. + + Note: In rare cases, some information may be misinterpreted. Off-chain data should be used as a guide only. + ## Sei Explorers diff --git a/pages/user-guides/getting-tokens.mdx b/pages/user-guides/getting-tokens.mdx index f4c08b53..9a590575 100644 --- a/pages/user-guides/getting-tokens.mdx +++ b/pages/user-guides/getting-tokens.mdx @@ -6,23 +6,37 @@ import { Callout } from "nextra/components"; Note that Sei may not be tradable in your region, subject to local laws and restrictions. -There are a few ways to acquire tokens on the Sei Mainnet: +## Acquiring tokens on Sei Networks -## Centralized Exchanges +### Centralized Exchanges Purchasing SEI through centralized exchanges is the easiest method. $SEI is available on several major exchanges including: - [Binance](https://www.binance.com/en-CA/how-to-buy/sei) - [BitGet](https://www.bitget.com/web3/academy/experience-sei) - [KuCoin](https://www.kucoin.com/how-to-buy/sei) -## Bridging +### Bridging -Bridging is essential for transferring tokens between different blockchains. This allows you to utilize tokens from various chains on the Sei network in their wrapped forms. It's crucial to verify the compatibility of the wrapped versions of your tokens on the Sei chain. For the best bridging experience, visit the [official Sei Bridge app](https://app.sei.io/bridge). +Bridging is essential for transferring tokens between different blockchains. This allows you to utilize tokens from various chains on the Sei network in their wrapped forms. It's crucial to verify the compatibility of the wrapped versions of your tokens on the Sei chain. -## Faucets +For the best bridging experience, visit the [Sei Bridge page](https://app.sei.io/bridge). -Faucets are available for acquiring small amounts of tokens on the Sei public devnet (arctic-1) for testing and development: -- [(Discord gated) STAKEME Faucet](https://sei-evm.faucetme.pro/) -- [(Github gated) NIMA Faucet](https://sei-faucet.nima.enterprises/) +### Faucets + +Faucets dispensing small amounts of tokens for development/testing are available on both the public testnet (atlantic-2) and devnet (arctic-1). + +These tokens bear no value, however please utilize small amounts when possible, as the supplied amounts are limited and the faucets all Discord-gated (unless specified). + +#### Sei Network provided + +- [Arctic-1 Devnet](arctic-1.app.sei.io/faucet) + +- [Atlantic-2 Testnet](atlantic-2.app.sei.io/faucet) + +#### Third-party + +- ['STAKEME' (Arctic-1 Devnet)](https://sei-evm.faucetme.pro/) + +- ['NIMA' (Arctic-1 Devnet)](https://sei-faucet.nima.enterprises/) (Github gated) For additional faucet resources, please refer to our [chain registry](https://github.com/sei-protocol/chain-registry/blob/main/chains.json).