Skip to content
This repository was archived by the owner on Mar 17, 2026. It is now read-only.

Commit 8db90d8

Browse files
add link
1 parent 4ddffe1 commit 8db90d8

File tree

1 file changed

+12
-4
lines changed
  • apps/web/app/(base-org)/developers/minikit

1 file changed

+12
-4
lines changed

apps/web/app/(base-org)/developers/minikit/page.tsx

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import Button from 'apps/web/src/components/base-org/Button';
21
import { ButtonVariants } from 'apps/web/src/components/base-org/Button/types';
32
import Container from 'apps/web/src/components/base-org/Container';
43
import Title from 'apps/web/src/components/base-org/typography/Title';
@@ -11,6 +10,8 @@ import { Testimonials } from 'apps/web/src/components/Developers/MiniKit/Testimo
1110
import { CtaBanner } from 'apps/web/src/components/Developers/Shared/CtaBanner';
1211
import Image, { StaticImageData } from 'next/image';
1312

13+
const GET_STARTED_URL = 'https://replit.com/@tina-he/ock-frames-template?v=1#README.md';
14+
1415
export default async function AgentKit() {
1516
return (
1617
<Container>
@@ -35,9 +36,16 @@ export default async function AgentKit() {
3536
</Title>
3637

3738
<div className="flex gap-6 pt-6">
38-
<Button variant={ButtonVariants.Secondary} iconName="arrowRight">
39+
<ButtonWithLinkAndEventLogging
40+
variant={ButtonVariants.Secondary}
41+
iconName="arrowRight"
42+
buttonClassNames="flex w-40 items-center px-4 py-3"
43+
href={GET_STARTED_URL}
44+
target="_blank"
45+
eventName="minikit-get-started"
46+
>
3947
Get started
40-
</Button>
48+
</ButtonWithLinkAndEventLogging>
4149
</div>
4250
</div>
4351

@@ -52,7 +60,7 @@ export default async function AgentKit() {
5260
variant={ButtonVariants.Secondary}
5361
iconName="arrowRight"
5462
buttonClassNames="flex w-40 items-center px-4 py-3"
55-
href="https://login.coinbase.com/signin"
63+
href={GET_STARTED_URL}
5664
target="_blank"
5765
eventName="minikit-get-started"
5866
>

0 commit comments

Comments
 (0)