Skip to content

Commit 1ab189d

Browse files
committed
bottom cards
1 parent 48d9c24 commit 1ab189d

File tree

5 files changed

+58
-1
lines changed

5 files changed

+58
-1
lines changed

public/content/ai-agents/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@ The distinction between AI agents and AI bots can sometimes be confusing, as bot
9393

9494
## You can build your own AI agent {#you-can-build-your-own-ai-agent}
9595

96-
TODO: CARDS HERE
96+
<BuildYourOwnAIAgent />

public/images/ai-agents/ai16z.png

10.6 KB
Loading

public/images/ai-agents/game.png

16 KB
Loading
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
import { Image } from "@/components/Image"
2+
import { ButtonLink } from "@/components/ui/buttons/Button"
3+
4+
import ai16z from "@/public/images/ai-agents/ai16z.png"
5+
import game from "@/public/images/ai-agents/game.png"
6+
7+
const BuildYourOwnAIAgent = () => {
8+
return (
9+
<div className="flex flex-col gap-8 md:flex-row">
10+
<div className="flex flex-1 flex-col gap-4 rounded-xl border bg-gradient-to-br from-transparent to-purple-200/10 p-8">
11+
<Image
12+
src={ai16z}
13+
alt="AI16Z"
14+
width={128}
15+
className="rounded-xl shadow-lg dark:shadow-body-light"
16+
/>
17+
<p className="text-2xl font-semibold">Build your own AI agent</p>
18+
<p>Developer first framework</p>
19+
<p>
20+
An open-source framework designed to create, deploy, and manage
21+
autonomous AI agents.
22+
</p>
23+
<div>
24+
<ButtonLink href="https://elizaos.github.io/eliza/" variant="outline">
25+
Use Eliza
26+
</ButtonLink>
27+
</div>
28+
</div>
29+
<div className="flex flex-1 flex-col gap-4 rounded-xl border bg-gradient-to-br from-transparent to-purple-200/10 p-8">
30+
<Image
31+
src={game}
32+
alt="GAME"
33+
width={128}
34+
className="rounded-xl shadow-lg dark:shadow-body-light"
35+
/>
36+
<p className="text-2xl font-semibold">GAME framework</p>
37+
<p>No-code AI agent platform</p>
38+
<p>
39+
Enables agents to be deployed on platforms like X and other
40+
third-party apps.
41+
</p>
42+
<div>
43+
<ButtonLink
44+
href="https://console.game.virtuals.io/"
45+
variant="outline"
46+
>
47+
Use GAME
48+
</ButtonLink>
49+
</div>
50+
</div>
51+
</div>
52+
)
53+
}
54+
55+
export default BuildYourOwnAIAgent

src/layouts/md/UseCases.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import type { MdPageContent, UseCasesFrontmatter } from "@/lib/interfaces"
44
import BannerNotification from "@/components/Banners/BannerNotification"
55
import { List as ButtonDropdownList } from "@/components/ButtonDropdown"
66
import AiAgentProductLists from "@/components/Content/ai-agents/AiAgentProductLists"
7+
import BuildYourOwnAIAgent from "@/components/Content/ai-agents/BuildYourOwnAIAgent"
78
import Emoji from "@/components/Emoji"
89
import { ContentHero } from "@/components/Hero"
910
import InlineLink from "@/components/ui/Link"
@@ -21,6 +22,7 @@ import { usePathname } from "@/i18n/routing"
2122
export const useCasesComponents = {
2223
// Export empty object if none needed
2324
AiAgentProductLists,
25+
BuildYourOwnAIAgent,
2426
}
2527

2628
type UseCasesLayoutProps = ChildOnlyProp &

0 commit comments

Comments
 (0)