Skip to content
Merged
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
6 changes: 3 additions & 3 deletions src/app/dashboard/agents/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export default function MyAgentsPage() {
<h1 className="op-page-title">My Agents</h1>
<p className="op-page-sub">Agents attributed to your linked wallet.</p>
</div>
<Link href="/dashboard/attribution" className="op-btn op-btn-primary">+ Submit Agent</Link>
<Link href="/register" className="op-btn op-btn-primary">+ Register Agent</Link>
</div>

{!wallet && !loading && (
Expand All @@ -118,9 +118,9 @@ export default function MyAgentsPage() {
</div>
<p style={{ fontWeight: 700, fontSize: "0.95rem", color: "var(--ink)", margin: "0 0 6px" }}>No agents linked</p>
<p style={{ fontSize: "0.78rem", color: "var(--muted)", maxWidth: 360, margin: "0 auto 20px", lineHeight: 1.6 }}>
Submit your agent or declare your wallet address in an existing agent&apos;s manifest to see it here.
Register your agent with a wallet manifest to see it here. Verification completes in 24–48 hours.
</p>
<Link href="/dashboard/attribution" className="op-btn op-btn-primary">Declare Attribution →</Link>
<Link href="/register" className="op-btn op-btn-primary">Register your agent →</Link>
</div>
) : (
<>
Expand Down
28 changes: 27 additions & 1 deletion src/app/register/register-client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,19 @@ export function RegisterClient() {
<p style={{ margin: "14px 0 0", fontSize: "0.72rem", color: "var(--muted)", lineHeight: 1.6 }}>
Verification typically completes within 24–48 hours. Once approved, books are generated automatically.
</p>
<div style={{ marginTop: 16 }}>
<Link
href="/access?next=/dashboard/agents"
style={{
display: "inline-flex", alignItems: "center", gap: 6,
padding: "8px 16px", background: "var(--accent)", color: "#fff",
borderRadius: "var(--radius-md)", fontWeight: 700, fontSize: "0.8rem",
textDecoration: "none",
}}
>
Sign in to track your submission →
</Link>
</div>
</div>
) : (
<form onSubmit={submitRepo}>
Expand Down Expand Up @@ -364,6 +377,19 @@ export function RegisterClient() {
<p style={{ fontSize: "0.72rem", color: "var(--muted)", marginTop: 12, lineHeight: 1.6 }}>
Verification typically completes within 24–48 hours.{submittedRef && " Keep your reference ID to track this submission."}
</p>
<div style={{ marginTop: 16 }}>
<Link
href="/access?next=/dashboard/agents"
style={{
display: "inline-flex", alignItems: "center", gap: 6,
padding: "8px 16px", background: "var(--accent)", color: "#fff",
borderRadius: "var(--radius-md)", fontWeight: 700, fontSize: "0.8rem",
textDecoration: "none",
}}
>
Sign in to track your submission →
</Link>
</div>
</div>
) : (
<form onSubmit={submitManual} style={{ display: "flex", flexDirection: "column", gap: 16 }}>
Expand Down Expand Up @@ -491,7 +517,7 @@ export function RegisterClient() {
<LedgerCard style={{ marginTop: 32 }}>
<div style={{ padding: "4px 0" }}>
<p style={{ margin: 0, fontSize: "0.78rem", color: "var(--muted)", lineHeight: 1.6 }}>
Questions? Message <a href="https://x.com/zettatracker" target="_blank" rel="noreferrer" style={{ color: "var(--accent)", textDecoration: "none" }}>@zettatracker</a> on X. Already registered?{" "}
Questions? Message <a href="https://x.com/zettaaidotco" target="_blank" rel="noreferrer" style={{ color: "var(--accent)", textDecoration: "none" }}>@zettaaidotco</a> on X. Already registered?{" "}
<Link href="/registry" style={{ color: "var(--accent)", textDecoration: "none" }}>Browse the registry →</Link>
</p>
</div>
Expand Down
Loading