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
16 changes: 16 additions & 0 deletions src/app/registry/[slug]/profile-client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2538,6 +2538,22 @@ export function ProfileClient({ agent, slug, economics, inferenceActivity, class
{tab === "inference" && (
<>
{inferenceActivity && <InferenceActivityBlock ia={inferenceActivity} />}
{inferenceActivity && (
<a
href={`/surplus/${slug}`}
style={{
display: "flex", alignItems: "center", justifyContent: "space-between",
padding: "10px 14px", marginBottom: 12,
background: "rgba(74,232,160,0.05)", border: "1px solid rgba(74,232,160,0.22)",
borderRadius: "var(--radius-md)", textDecoration: "none",
}}
>
<span style={{ fontSize: "0.78rem", fontWeight: 600, color: "var(--ink)" }}>
Surplus × Zetta · Full inference economics report
</span>
<span style={{ fontSize: "0.72rem", color: "var(--accent)", fontWeight: 700 }}>View →</span>
</a>
)}
<InferenceTab ia={inferenceActivity} slug={slug} books={books} />
</>
)}
Expand Down
4 changes: 2 additions & 2 deletions src/app/surplus/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ export default function SurplusPilotPage() {
</div>
<p style={{ fontSize: "0.72rem", color: "var(--muted)", marginTop: 12 }}>
Questions?{" "}
<a href="https://x.com/zettatracker" target="_blank" rel="noreferrer" style={{ color: "var(--accent)", textDecoration: "none" }}>
@zettatracker
<a href="https://x.com/zettaaidotco" target="_blank" rel="noreferrer" style={{ color: "var(--accent)", textDecoration: "none" }}>
@zettaaidotco
</a>{" "}
on X.
</p>
Expand Down
7 changes: 4 additions & 3 deletions src/components/site-nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,10 @@ export function SiteNav() {
{ title: "Luca", desc: "AI financial analyst. Reads books, cites sources, never invents data.", href: "/luca" },
]} />
<NavDropdown label="Solutions" items={[
{ title: "For Agent Teams", desc: "Submit a manifest, get attributed books, share your financial profile.", href: "/registry#verify" },
{ title: "For Developers", desc: "API access to agent books, registry, revenue, and badge endpoints.", href: "/api" },
{ title: "For Researchers", desc: "Analyst-grade reports on agent finance and ecosystem attribution.", href: "/research" },
{ title: "For Agent Teams", desc: "Submit a manifest, get attributed books, share your financial profile.", href: "/registry#verify" },
{ title: "Surplus × Zetta", desc: "Financial visibility for agents routing inference through Surplus.", href: "/surplus" },
{ title: "For Developers", desc: "API access to agent books, registry, revenue, and badge endpoints.", href: "/api" },
{ title: "For Researchers", desc: "Analyst-grade reports on agent finance and ecosystem attribution.", href: "/research" },
]} />
<NavDropdown label="About Us" items={[
{ title: "What is Zetta", desc: "Financial intelligence infrastructure for autonomous agents.", href: "/about" },
Expand Down
Loading