Skip to content

Commit 5226225

Browse files
Merge pull request #249 from sei-protocol/fixes
Fixes
2 parents 9bb1a50 + 6a5d164 commit 5226225

File tree

7 files changed

+22
-30
lines changed

7 files changed

+22
-30
lines changed

STYLE_GUIDE.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ const codeBlockString = () => {
172172
```sh copy
173173
git clone https://github.com/sei-protocol/sei-chain
174174
cd sei-chain
175-
git checkout v4.1.4-evm-devnet
175+
git checkout v6.0.3
176176
make install
177177
```
178178

app/not-found.tsx

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
'use client';
2+
import Link from 'next/link';
3+
4+
export default function Custom404() {
5+
return (
6+
<div className='flex flex-col items-center justify-center min-h-screen px-4 bg-white text-black dark:bg-black dark:text-white'>
7+
<div className='flex items-center space-x-6 mb-8'>
8+
<h1 className='text-3xl font-bold'>404</h1>
9+
<div className='h-16 w-px bg-black dark:bg-white'></div>
10+
<p className='text-xl'>This page could not be found.</p>
11+
</div>
12+
13+
<Link
14+
href='/'
15+
className='px-6 py-3 mt-6 rounded-md font-medium transition-colors bg-black text-white hover:bg-gray-800 dark:bg-white dark:text-black dark:hover:bg-gray-200'>
16+
Go to Home
17+
</Link>
18+
</div>
19+
);
20+
}

content/cosmwasm/index.mdx

-10
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,4 @@ Build dApps and protocols using well known tools like CosmWasm, @cosm-js, and Ke
3636
highlights: ['Choosing the right frameworks (e.g., React)', 'Connecting to Sei’s smart contracts', 'Handling blockchain events', 'Best practices for dApp UX/UI']
3737
}}
3838
/>
39-
<LinkCard
40-
icon={<IconArrowsExchange />}
41-
title="Cross-Chain Interoperability with IBC"
42-
link="/cosmwasm/ibc-protocol"
43-
description={`Enable seamless communication between Sei and other blockchains using IBC.`}
44-
preview={{
45-
content: 'Implement cross-chain features with IBC to connect Sei with the broader blockchain ecosystem.',
46-
highlights: ['Introduction to the IBC protocol', 'Setting up cross-chain communication', 'Ensuring data integrity and security', 'Use cases: Cross-chain DeFi, NFTs, and more']
47-
}}
48-
/>
4939
</div>

content/cosmwasm/installing-seid.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ following commands:
2020
```bash copy
2121
git clone https://github.com/sei-protocol/sei-chain
2222
cd sei-chain
23-
git checkout v4.1.4-evm-devnet
23+
git checkout v6.0.3
2424
make install
2525
```
2626

src/components/Set404/Set404.tsx

-16
This file was deleted.

src/components/Set404/index.ts

-1
This file was deleted.

src/components/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ export * from './Logo';
1616
export * from './Nfts';
1717
export * from './VersionFetcher';
1818
export * from './PropertyInfo';
19-
export * from './Set404';
2019
export * from './EcosystemMap';
2120
export * from './InteractiveTerminal';
2221
export * from './AskCookbook';

0 commit comments

Comments
 (0)