-
Notifications
You must be signed in to change notification settings - Fork 198
feat: improve wallets overview page with responsive hero images and b… #1926
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
da66a4d
feat: improve wallets overview page with responsive hero images and b…
dbc6bb9
fix: Update docs/pages/index.mdx
avarobinson 549670a
fix: Update docs/pages/index.mdx
avarobinson c2def9b
fix: revert submodule update
avarobinson 029e2cd
fix: submodule
avarobinson a29838a
fix: submodule
avarobinson 878bc50
Merge branch 'main' into feat/wallets-page-improvements
avarobinson bdb40f7
Merge branch 'main' into feat/wallets-page-improvements
avarobinson dc6b0a7
feat: improve wallets page styling based on feedback
74889b3
docs: fixing lint and small change
avarobinson cf6e788
docs: removing unedded alignment
avarobinson 52b3354
docs: fixing link
avarobinson 6f00981
Merge branch 'main' into feat/wallets-page-improvements
Dan-Nolan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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 |
---|---|---|
|
@@ -4,40 +4,61 @@ description: Build zero-friction user onboarding and transactions end-to-end wit | |
slug: wallets | ||
--- | ||
|
||
<img src="/images/wallets/overviewHeader.png" alt="smart wallets overview" /> | ||
<style>{` | ||
.fern-card { | ||
font-size: 14px; | ||
} | ||
|
||
<div | ||
style={{ | ||
display: "flex", | ||
justifyContent: "center", | ||
marginBottom: "2rem", | ||
gap: "1.5rem", | ||
}} | ||
> | ||
<Button | ||
/* Responsive hero images */ | ||
.hero-image-desktop { | ||
display: block; | ||
width: 100%; | ||
height: auto; | ||
max-width: 1010px; | ||
margin: 0 auto; | ||
} | ||
|
||
.hero-image-mobile { | ||
display: none; | ||
width: 100%; | ||
|
||
height: auto; | ||
margin: 0 auto; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.hero-image-desktop { | ||
display: none; | ||
} | ||
|
||
.hero-image-mobile { | ||
display: block; | ||
} | ||
} | ||
`}</style> | ||
|
||
<img src="/images/overviewHeader.png" alt="smart wallets overview" className="hero-image-desktop" /> | ||
avarobinson marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
<img src="/images/overviewHeaderMobile.png" alt="smart wallets overview" className="hero-image-mobile" /> | ||
avarobinson marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
||
<CardGroup cols={2}> | ||
<Card | ||
title="React Quickstart" | ||
icon="bolt" | ||
iconPosition="left" | ||
style={{ textAlign: "left", alignItems: "flex-start" }} | ||
href="/wallets/react/quickstart" | ||
style={{ | ||
backgroundColor: "var(--accent-2, #ECF3FF)", | ||
padding: "2rem", | ||
fontSize: "1rem", | ||
}} | ||
> | ||
React Quickstart | ||
</Button> | ||
<Button | ||
> | ||
Build an onchain app from scratch with wallets and transactions. | ||
</Card> | ||
<Card | ||
title="Try our demo" | ||
icon="fa-regular fa-play" | ||
iconPosition="left" | ||
style={{ textAlign: "left", alignItems: "flex-start" }} | ||
avarobinson marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
href="https://demo.alchemy.com/" | ||
style={{ | ||
backgroundColor: "#363FF9", | ||
color: "white", | ||
padding: "2rem 2rem", | ||
fontSize: "1rem", | ||
}} | ||
> | ||
Try our demo | ||
</Button> | ||
</div> | ||
> | ||
See Alchemy Smart Wallets in action with our interactive demo. | ||
</Card> | ||
</CardGroup> | ||
|
||
## Everything you need for onchain applications | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.