1- import Button from 'apps/web/src/components/base-org/Button' ;
21import { ButtonVariants } from 'apps/web/src/components/base-org/Button/types' ;
32import Container from 'apps/web/src/components/base-org/Container' ;
43import Title from 'apps/web/src/components/base-org/typography/Title' ;
@@ -11,6 +10,8 @@ import { Testimonials } from 'apps/web/src/components/Developers/MiniKit/Testimo
1110import { CtaBanner } from 'apps/web/src/components/Developers/Shared/CtaBanner' ;
1211import Image , { StaticImageData } from 'next/image' ;
1312
13+ const GET_STARTED_URL = 'https://replit.com/@tina-he/ock-frames-template?v=1#README.md' ;
14+
1415export 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