Skip to content

Commit 745973e

Browse files
add header and action
1 parent 7b16dd0 commit 745973e

File tree

2 files changed

+29
-21
lines changed

2 files changed

+29
-21
lines changed

apps/web/src/components/Developers/AgentKit/OnchainActions.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ const ACTIONS: ActionItem[] = [
2222
{
2323
title: 'Deposit via Morpho',
2424
},
25+
{
26+
title: 'Anything you can imagine',
27+
},
2528
];
2629

2730
function Action({ title }: ActionItem) {
Lines changed: 26 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,35 @@
11
import { Marquee } from 'apps/web/src/components/Developers/Shared/Marquee';
22
import { TweetCard } from 'apps/web/src/components/Developers/Shared/TweetCard';
33
import tweet from 'apps/web/src/components/Developers/AgentKit/tweet.png';
4+
import { TitleLevel } from 'apps/web/src/components/base-org/typography/Title/types';
5+
import Title from 'apps/web/src/components/base-org/typography/Title';
46

57
export function Testmonials() {
68
return (
7-
<div className="relative flex w-full flex-col items-center justify-center overflow-hidden">
8-
<Marquee className="[--duration:20s]" pauseOnHover>
9-
<TweetCard
10-
image={tweet}
11-
name="Rob at Cat.town"
12-
username="@cattown"
13-
content="Just built a musician-friendly AI Agent using @base and @CoinbaseDev AgentKit! Watch how you can go from zero to shipping in less than 10 minutes—and maybe snag part of the $30k grants!"
14-
/>
15-
<TweetCard
16-
image={tweet}
17-
name="Rob at Cat.town"
18-
username="@cattown"
19-
content="Just built a musician-friendly AI Agent using @base and @CoinbaseDev AgentKit! Watch how you can go from zero to shipping in less than 10 minutes—and maybe snag part of the $30k grants!"
20-
/>
21-
<TweetCard
22-
image={tweet}
23-
name="Rob at Cat.town"
24-
username="@cattown"
25-
content="Just built a musician-friendly AI Agent using @base and @CoinbaseDev AgentKit! Watch how you can go from zero to shipping in less than 10 minutes—and maybe snag part of the $30k grants!"
26-
/>
27-
</Marquee>
9+
<div className="flex w-full flex-col gap-10">
10+
<Title level={TitleLevel.Title1}>Powering the most creative onchain agents.</Title>
11+
<div className="relative flex w-full flex-col items-center justify-center overflow-hidden">
12+
<Marquee className="[--duration:20s]" pauseOnHover>
13+
<TweetCard
14+
image={tweet}
15+
name="Rob at Cat.town"
16+
username="@cattown"
17+
content="Just built a musician-friendly AI Agent using @base and @CoinbaseDev AgentKit! Watch how you can go from zero to shipping in less than 10 minutes—and maybe snag part of the $30k grants!"
18+
/>
19+
<TweetCard
20+
image={tweet}
21+
name="Rob at Cat.town"
22+
username="@cattown"
23+
content="Just built a musician-friendly AI Agent using @base and @CoinbaseDev AgentKit! Watch how you can go from zero to shipping in less than 10 minutes—and maybe snag part of the $30k grants!"
24+
/>
25+
<TweetCard
26+
image={tweet}
27+
name="Rob at Cat.town"
28+
username="@cattown"
29+
content="Just built a musician-friendly AI Agent using @base and @CoinbaseDev AgentKit! Watch how you can go from zero to shipping in less than 10 minutes—and maybe snag part of the $30k grants!"
30+
/>
31+
</Marquee>
32+
</div>
2833
</div>
2934
);
3035
}

0 commit comments

Comments
 (0)