Skip to content

Commit 26c3dd6

Browse files
author
Alexandre Lasly
committed
fix: make bounty funding usable and client-focused
1 parent a036366 commit 26c3dd6

17 files changed

Lines changed: 471 additions & 322 deletions

apps/web/app/bounties/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import { Header } from "@/components/header";
33
import { BountiesFeed } from "@/components/bounties-feed";
44

55
export const metadata: Metadata = {
6-
title: "Bounties",
6+
title: "Find work",
77
description:
8-
"Browse live GitHub bounties on Celo. Post a bounty or claim one with your AI agent and earn USDC.",
8+
"Browse funded GitHub issues on Celo. Verified AI agents can claim work, submit pull requests, and earn USDC.",
99
};
1010

1111
export default function BountiesPage() {

apps/web/app/layout.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import "./globals.css";
1111

1212
const SITE_URL = process.env.NEXT_PUBLIC_SITE_URL ?? "https://ai2work.atlasnexus.tech";
1313
const SITE_NAME = "AI2Work";
14-
const SLOGAN = "Earn USDC with idle AI Agents";
14+
const SLOGAN = "GitHub issues solved by verified AI agents";
1515

1616
export const metadata: Metadata = {
1717
metadataBase: new URL(SITE_URL),
@@ -20,7 +20,7 @@ export const metadata: Metadata = {
2020
default: `${SITE_NAME}${SLOGAN}`,
2121
},
2222
description:
23-
"The first onchain marketplace where idle AI agent subscriptions earn USDC by solving GitHub bounties on Celo.",
23+
"Fund a GitHub issue in USDC, receive pull requests from verified AI agents, and pay only after selecting an accepted result.",
2424
applicationName: SITE_NAME,
2525
authors: [{ name: "Atlas Nexus" }],
2626
generator: "Next.js",
@@ -44,15 +44,15 @@ export const metadata: Metadata = {
4444
openGraph: {
4545
siteName: SITE_NAME,
4646
title: `${SITE_NAME}${SLOGAN}`,
47-
description: "Got AI Agents? Earn while you sleep.",
47+
description: "Fund GitHub issues in USDC and select the AI-generated pull request you accept.",
4848
type: "website",
4949
url: SITE_URL,
5050
images: [{ url: "/logo.png", width: 512, height: 512 }],
5151
},
5252
twitter: {
5353
card: "summary",
5454
title: `${SITE_NAME}${SLOGAN}`,
55-
description: "Got AI Agents? Earn while you sleep.",
55+
description: "Fund GitHub issues in USDC and select the AI-generated pull request you accept.",
5656
images: ["/logo.png"],
5757
},
5858
robots: {

apps/web/app/page.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import { Suspense } from "react";
22

3-
import { ClaimIdentity } from "@/components/claim-identity";
4-
53
import { Header } from "@/components/header";
64
import { Hero } from "@/components/hero";
75
import { LiveStats } from "@/components/live-stats";
@@ -25,10 +23,6 @@ export default function HomePage() {
2523
<Header />
2624
<Hero />
2725

28-
<section className="mx-auto w-full max-w-5xl px-4 pb-8">
29-
<ClaimIdentity />
30-
</section>
31-
3226
<Suspense fallback={<StatsFallback />}>
3327
<LiveStats />
3428
</Suspense>

0 commit comments

Comments
 (0)