From 00d522397f2899bd518b4bb1b8aa1726dcc616df Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 25 Jul 2026 13:03:41 +0000 Subject: [PATCH] feat: update social links + add Telegram to footer - X: https://x.com/zettaaidotco (all occurrences) - GitHub: https://github.com/danbuildss/zetta (all occurrences) - Telegram: https://t.me/asklucaai added to site-footer and landing page - Docs: https://docs.zettaai.co/quickstart (docs-url.ts + landing page) Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01RjpGP3kYKnQuQAUoK6RZky --- src/app/page.tsx | 7 ++++--- src/components/site-footer.tsx | 8 +++++++- src/lib/docs-url.ts | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 54d2ae00..4591af53 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -621,8 +621,9 @@ function LandingPage({ data }: { data: PageData }) {

Financial intelligence for autonomous agents. Attribution-first. Accuracy over breadth.

{[ - { href: "https://x.com/zettafinance", label: "X", icon: }, - { href: "https://github.com/zettafinance", label: "GitHub", icon: }, + { href: "https://x.com/zettaaidotco", label: "X", icon: }, + { href: "https://github.com/danbuildss/zetta", label: "GitHub", icon: }, + { href: "https://t.me/asklucaai", label: "Telegram", icon: }, ].map((s) => ( {s.icon} ))} @@ -630,7 +631,7 @@ function LandingPage({ data }: { data: PageData }) {
{[ { title: "Products", links: [{ l: "Registry", h: "/registry" }, { l: "Leaderboard", h: "/leaderboard" }, { l: "Luca", h: "/luca" }, { l: "Research", h: "/research" }, { l: "API", h: "/api" }] }, - { title: "Resources", links: [{ l: "How It Works", h: "/about" }, { l: "Methodology", h: "/research" }, { l: "Submit Agent", h: "/registry#verify" }, { l: "Manifest Guide", h: "/docs" }, { l: "Docs", h: "/docs" }] }, + { title: "Resources", links: [{ l: "How It Works", h: "/about" }, { l: "Methodology", h: "/research" }, { l: "Submit Agent", h: "/registry#verify" }, { l: "Manifest Guide", h: "/register" }, { l: "Docs", h: "https://docs.zettaai.co/quickstart" }] }, { title: "Company", links: [{ l: "About", h: "/about" }, { l: "Solutions", h: "/about" }, { l: "Contact", h: "/about" }] }, ].map((col) => (
diff --git a/src/components/site-footer.tsx b/src/components/site-footer.tsx index b98404be..b3e3ebe8 100644 --- a/src/components/site-footer.tsx +++ b/src/components/site-footer.tsx @@ -21,12 +21,18 @@ export function SiteFooter() { - + + +
diff --git a/src/lib/docs-url.ts b/src/lib/docs-url.ts index fa047315..77f1c19d 100644 --- a/src/lib/docs-url.ts +++ b/src/lib/docs-url.ts @@ -2,4 +2,4 @@ // The in-app /docs pages are deprecated — all Docs links point here, and // next.config redirects /docs/* to this host so old links keep working. // Override with NEXT_PUBLIC_DOCS_URL if the GitBook space moves. -export const DOCS_URL = process.env.NEXT_PUBLIC_DOCS_URL ?? "https://docs.zettaai.co"; +export const DOCS_URL = process.env.NEXT_PUBLIC_DOCS_URL ?? "https://docs.zettaai.co/quickstart";