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
1 change: 1 addition & 0 deletions apps/playground-web/src/app/engine/airdrop/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export default function Page() {
address!
</>
}
deployLink="https://thirdweb.com/team/~/~/engine/create?utm_source=playground"
docsLink="https://thirdweb-engine.apidocumentation.com/reference#tag/erc20/POST/contract/{chain}/{contractAddress}/erc20/mint-batch-to?utm_source=playground"
heroLink="/airdrop.avif"
/>
Expand Down
1 change: 1 addition & 0 deletions apps/playground-web/src/app/engine/minting/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default function Page() {
sponsor the gas so your users only need a wallet address!
</>
}
deployLink="https://thirdweb.com/team/~/~/engine/create?utm_source=playground"
docsLink="https://thirdweb-engine.apidocumentation.com/reference#tag/erc1155/POST/contract/{chain}/{contractAddress}/erc1155/mint-to?utm_source=playground"
heroLink="/minting.avif"
/>
Expand Down
1 change: 1 addition & 0 deletions apps/playground-web/src/app/engine/webhooks/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default function Page() {
transaction or backend wallet events.
</>
}
deployLink="https://thirdweb.com/team/~/~/engine/create?utm_source=playground"
docsLink="https://portal.thirdweb.com/engine/features/webhooks?utm_source=playground"
heroLink="/webhooks.avif"
/>
Expand Down
14 changes: 6 additions & 8 deletions apps/playground-web/src/components/blocks/EngineAPIHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { Button } from "../ui/button";
export function EngineAPIHeader(props: {
title: string;
description: React.ReactNode;
deployLink: string;
docsLink: string;
heroLink: string;
}) {
Expand All @@ -27,6 +28,11 @@ export function EngineAPIHeader(props: {

<div className="flex flex-col gap-3 md:flex-row">
<Button asChild size="lg">
<Link target="_blank" href={props.deployLink}>
Deploy an Instance
</Link>
</Button>
<Button asChild variant="outline" size="lg">
<Link target="_blank" href={props.docsLink}>
View docs
</Link>
Expand All @@ -39,14 +45,6 @@ export function EngineAPIHeader(props: {
Book a Demo
</Link>
</Button>
<Button asChild variant="outline" size="lg">
<Link
target="_blank"
href="https://thirdweb.com/team/~/~/engine/create?utm_source=playground"
>
Deploy an Instance
</Link>
</Button>
</div>
</div>

Expand Down
Loading