This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix docs issues from launch review and test jam
- Loading branch information
Ian Mukherjee
committed
Dec 15, 2023
1 parent
511d8f9
commit 47f40c7
Showing
14 changed files
with
68 additions
and
50 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
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
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
Binary file modified
BIN
+11.2 KB
(200%)
docs/onboarding/22 NFT Checkouts/assets/checkout-with-card-customization-demo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+61.8 KB
(170%)
docs/onboarding/22 NFT Checkouts/assets/checkout-with-card-demo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+105 KB
(620%)
docs/onboarding/22 NFT Checkouts/assets/checkout-with-eth-demo-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+139 KB
(480%)
docs/onboarding/22 NFT Checkouts/assets/checkout-with-eth-demo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+811 KB
(810%)
docs/onboarding/22 NFT Checkouts/assets/checkouts-overview.png
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 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,41 @@ | ||
import React from "react"; | ||
import ProductCard from "./ProductCard"; | ||
|
||
type Product = { | ||
image: string; | ||
name: string; | ||
description: string; | ||
link: string; | ||
}; | ||
|
||
const products: Product[] = [ | ||
{ | ||
image: "/assets/product/checkout.png", | ||
name: "NFT Checkout", | ||
description: | ||
"Secure payments flows that enable your users to purchase NFTs with their credit card", | ||
link: "/checkouts", | ||
}, | ||
]; | ||
|
||
export default function PaymentsSection() { | ||
return ( | ||
<div className="explore-products-container"> | ||
<h2 className="explore-products-heading" style={{ marginBottom: 12 }}> | ||
Payments | ||
</h2> | ||
<div className="row" style={{ marginBottom: 64 }}> | ||
{products.map((p, i) => ( | ||
<div className="col col--4" key={i} style={{ padding: 8 }}> | ||
<ProductCard | ||
image={p.image} | ||
name={p.name} | ||
description={p.description} | ||
link={p.link} | ||
/> | ||
</div> | ||
))} | ||
</div> | ||
</div> | ||
); | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.