-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
423 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
title: Migrate from Alternative Libraries | ||
pagination_next: | ||
pagination_prev: | ||
--- | ||
|
||
import Wrapper from '../../components/Home/Wrapper.js' | ||
import rainbowkitLogo from '../../../static/assets/home/rainbow.png' | ||
import connectkitLogo from '../../../static/assets/home/family.png' | ||
import anzaLogo from '../../../static/assets/home/anza.png' | ||
|
||
|
||
|
||
## Migrate from | ||
|
||
<Wrapper | ||
type="large" | ||
fit={false} | ||
items={[ | ||
{ | ||
name: 'RainbowKit', | ||
description: 'Migrate from RainbowKit to Reown AppKit.', | ||
icon: rainbowkitLogo, | ||
href: './from-rainbowkit-next' | ||
}, | ||
{ | ||
name: 'ConnectKit', | ||
description: 'Migrate from ConnectKit to Reown AppKit.', | ||
icon: connectkitLogo, | ||
href: './from-connectkit-next' | ||
}, | ||
{ | ||
name: 'Anza Adapter', | ||
description: 'Migrate from Solana Anza Adapter to Reown AppKit.', | ||
icon: anzaLogo, | ||
href: './from-anza-adapter-react' | ||
} | ||
]} | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react' | ||
import Link from '@docusaurus/Link' | ||
|
||
const CenteredContainer = ({ href, name, icon, description }) => { | ||
return ( | ||
<Link to={href} className="home__centered-container"> | ||
<img src={icon} alt={name} /> | ||
<h4>{name}</h4> | ||
<p>{description}</p> | ||
</Link> | ||
) | ||
} | ||
|
||
export default CenteredContainer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react' | ||
import Link from '@docusaurus/Link' | ||
|
||
const SupportContainer = ({ href, name, icon, description }) => { | ||
return ( | ||
<Link to={href} className="home__support-container"> | ||
<img src={icon} alt={name} /> | ||
<h4>{name}</h4> | ||
<p>{description}</p> | ||
</Link> | ||
) | ||
} | ||
|
||
export default SupportContainer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.