Skip to content
Open
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
Binary file added public/images/ai-agents/eternalai.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
85 changes: 56 additions & 29 deletions src/components/Content/ai-agents/BuildYourOwnAIAgent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,50 +2,77 @@ import { Image } from "@/components/Image"
import { ButtonLink } from "@/components/ui/buttons/Button"

import ai16z from "@/public/images/ai-agents/ai16z.png"
import eternalai from "@/public/images/ai-agents/eternalai.png"
import game from "@/public/images/ai-agents/game.png"

const BuildYourOwnAIAgent = () => {
return (
<div className="flex flex-col gap-8 md:flex-row">
<div className="flex flex-col gap-8">
<div className="flex flex-1 flex-col gap-4 rounded-xl border bg-gradient-to-br from-transparent to-purple-200/10 p-8">
<Image
src={ai16z}
alt="AI16Z"
src={eternalai}
alt="Eternal AI"
width={128}
className="rounded-xl shadow-lg dark:shadow-body-light"
/>
<p className="text-2xl font-semibold">Build your own AI agent</p>
<p>Developer first framework</p>
<p className="text-2xl font-semibold">Eternal AI</p>
<p>The Ethereum-Aligned AI Agent Protocol</p>
<p>
An open-source framework designed to create, deploy, and manage
autonomous AI agents.
Eternal AI is a Solidity-based AI Agent framework. AI agents are
written as smart contracts and run onchain exactly as programmed —
permissionless, uncensored, and verifiable. Deployed on 15+ EVM
chains, including Ethereum, Arbitrum, Base, and ZK.{" "}
</p>
<div>
<ButtonLink href="https://elizaos.github.io/eliza/" variant="outline">
Use Eliza
<ButtonLink href="https://eternalai.org/" variant="outline">
Use Eternal AI
</ButtonLink>
</div>
</div>
<div className="flex flex-1 flex-col gap-4 rounded-xl border bg-gradient-to-br from-transparent to-purple-200/10 p-8">
<Image
src={game}
alt="GAME"
width={128}
className="rounded-xl shadow-lg dark:shadow-body-light"
/>
<p className="text-2xl font-semibold">GAME framework</p>
<p>No-code AI agent platform</p>
<p>
Enables agents to be deployed on platforms like X and other
third-party apps.
</p>
<div>
<ButtonLink
href="https://console.game.virtuals.io/"
variant="outline"
>
Use GAME
</ButtonLink>
<div className="flex flex-col gap-8 md:flex-row">
<div className="flex flex-1 flex-col gap-4 rounded-xl border bg-gradient-to-br from-transparent to-purple-200/10 p-8">
<Image
src={ai16z}
alt="AI16Z"
width={128}
className="rounded-xl shadow-lg dark:shadow-body-light"
/>
<p className="text-2xl font-semibold">Build your own AI agent</p>
<p>Developer first framework</p>
<p>
An open-source framework designed to create, deploy, and manage
autonomous AI agents.
</p>
<div>
<ButtonLink
href="https://elizaos.github.io/eliza/"
variant="outline"
>
Use Eliza
</ButtonLink>
</div>
</div>
<div className="flex flex-1 flex-col gap-4 rounded-xl border bg-gradient-to-br from-transparent to-purple-200/10 p-8">
<Image
src={game}
alt="GAME"
width={128}
className="rounded-xl shadow-lg dark:shadow-body-light"
/>
<p className="text-2xl font-semibold">GAME framework</p>
<p>No-code AI agent platform</p>
<p>
Enables agents to be deployed on platforms like X and other
third-party apps.
</p>
<div>
<ButtonLink
href="https://console.game.virtuals.io/"
variant="outline"
>
Use GAME
</ButtonLink>
</div>
</div>
</div>
</div>
Expand Down