Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,16 @@ aside,
-webkit-backdrop-filter: blur(10px);
}

.nextra-search-results a,
.nextra-search-results a * {
color: var(--color-neutral-700) !important;
}

.dark .nextra-search-results a,
.dark .nextra-search-results a * {
color: var(--color-neutral-300) !important;
}

.nextra-search-results a:hover,
.nextra-search-results a:hover * {
color: var(--color-black) !important;
Expand Down
1 change: 0 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import '@radix-ui/themes/styles.css';
import 'nextra-theme-docs/style.css';
import './globals.css';
import 'katex/dist/katex.min.css';
import '../src/vendor/bytebellai/style.css';

export const metadata: Metadata = {
metadataBase: new URL('https://docs.sei.io'),
Expand Down
18 changes: 9 additions & 9 deletions content/evm/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -158,23 +158,23 @@ import { RpcSelector, AddSeiInlineButton } from '../../src/components';
<IconWand className="h-5 w-5 text-neutral-700 dark:text-neutral-300 group-hover:text-red-500 transition-colors" />
</div>
<h3 className="text-base font-bold mb-2 text-neutral-800 dark:text-neutral-200">EVM Contract Wizard</h3>
<p className="text-sm text-neutral-600 dark:text-neutral-400 mb-2">Generate secure ERC-20, ERC-721, and more contract in minutes with the Contract Wizard. Configure the features, copy the Solidity code, deploy.</p>
<span className="text-sm text-neutral-600 dark:text-neutral-400 mb-2 block">Generate secure ERC-20, ERC-721, and more contract in minutes with the Contract Wizard. Configure the features, copy the Solidity code, deploy.</span>
</a>

<a href="/evm/building-a-frontend" className="group flex flex-col rounded-xl p-5 bg-neutral-900/5 dark:bg-neutral-900/20 border border-neutral-200/50 dark:border-neutral-800/50 hover:bg-white dark:hover:bg-neutral-900 hover:border-neutral-300 dark:hover:border-neutral-700 hover:shadow-md transition-all h-full">
<div className="w-10 h-10 rounded-lg bg-neutral-900/10 dark:bg-neutral-800/30 flex items-center justify-center mb-4 group-hover:bg-red-500/10 transition-colors">
<IconLayoutDashboard className="h-5 w-5 text-neutral-700 dark:text-neutral-300 group-hover:text-red-500 transition-colors" />
</div>
<h3 className="text-base font-bold mb-2 text-neutral-800 dark:text-neutral-200">Frontend Integration</h3>
<p className="text-sm text-neutral-600 dark:text-neutral-400 mb-2">Connect various frontend interfaces such as ethers.js, viem, wagmi to your Sei EVM smart contracts.</p>
<span className="text-sm text-neutral-600 dark:text-neutral-400 mb-2 block">Connect various frontend interfaces such as ethers.js, viem, wagmi to your Sei EVM smart contracts.</span>
</a>

<a href="/evm/solidity-resources" className="group flex flex-col rounded-xl p-5 bg-neutral-900/5 dark:bg-neutral-900/20 border border-neutral-200/50 dark:border-neutral-800/50 hover:bg-white dark:hover:bg-neutral-900 hover:border-neutral-300 dark:hover:border-neutral-700 hover:shadow-md transition-all h-full">
<div className="w-10 h-10 rounded-lg bg-neutral-900/10 dark:bg-neutral-800/30 flex items-center justify-center mb-4 group-hover:bg-red-500/10 transition-colors">
<IconTools className="h-5 w-5 text-neutral-700 dark:text-neutral-300 group-hover:text-red-500 transition-colors" />
</div>
<h3 className="text-base font-bold mb-2 text-neutral-800 dark:text-neutral-200">Solidity Resources</h3>
<p className="text-sm text-neutral-600 dark:text-neutral-400 mb-2">Tools and best practices for Solidity development on Sei.</p>
<span className="text-sm text-neutral-600 dark:text-neutral-400 mb-2 block">Tools and best practices for Solidity development on Sei.</span>
</a>
</div>

Expand All @@ -189,9 +189,9 @@ import { RpcSelector, AddSeiInlineButton } from '../../src/components';
<IconTerminal2 className="h-6 w-6 text-red-500" />
</div>
<h3 className="text-xl font-bold mb-2">Deploy with Hardhat</h3>
<p className="text-neutral-600 dark:text-neutral-400 mb-4">
<span className="text-neutral-600 dark:text-neutral-400 mb-4 block">
Deploy smart contracts on Sei EVM using Hardhat. Simple setup, fast results.
</p>
</span>
</div>
<div className="flex items-center text-red-500 font-medium">
<span>Start tutorial</span>
Expand All @@ -205,9 +205,9 @@ import { RpcSelector, AddSeiInlineButton } from '../../src/components';
<IconPackage className="h-6 w-6 text-red-500" />
</div>
<h3 className="text-xl font-bold mb-2">Deploy with Foundry</h3>
<p className="text-neutral-600 dark:text-neutral-400 mb-4">
<span className="text-neutral-600 dark:text-neutral-400 mb-4 block">
Use Foundry to build and deploy on Sei EVM. Fast testing, simple deployment.
</p>
</span>
</div>
<div className="flex items-center text-red-500 font-medium">
<span>Start tutorial</span>
Expand All @@ -226,9 +226,9 @@ import { RpcSelector, AddSeiInlineButton } from '../../src/components';
<h2 className="text-xl font-medium text-neutral-800 dark:text-white">RPC Endpoints</h2>
</div>

<p className="text-neutral-700 dark:text-neutral-300 mb-4">
<div className="text-neutral-700 dark:text-neutral-300 mb-4">
Choose from official Sei Foundation endpoints or community-maintained alternatives. All endpoints support standard EVM JSON-RPC methods. Public endpoints have rate limits—for production apps, consider using a dedicated RPC provider or <a href="/node" className="text-red-500 hover:text-red-600 dark:hover:text-red-400">running your own node</a>.
</p>
</div>

<RpcSelector />
</div>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.5.3",
"puppeteer": "^24.11.0",
"tailwindcss": "^4.0.9",
"tailwindcss": "^4.1.17",
"tsx": "^4.19.3",
"typescript": "^5.3.3",
"wait-on": "^9.0.1",
Expand Down
Loading
Loading