From 17e152a90530a27d85edf6b6ac2d8f14023d0055 Mon Sep 17 00:00:00 2001 From: Travis Fischer Date: Sun, 29 Jun 2025 11:46:14 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9A=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/src/app/page.tsx | 2 +- apps/web/src/components/supply-side-cta.tsx | 7 +++- docs/inject.js | 44 +++++++++++++++++++++ todo.md | 12 +++--- 4 files changed, 57 insertions(+), 8 deletions(-) create mode 100644 docs/inject.js diff --git a/apps/web/src/app/page.tsx b/apps/web/src/app/page.tsx index dcb2863c..bcf9c7ff 100644 --- a/apps/web/src/app/page.tsx +++ b/apps/web/src/app/page.tsx @@ -139,7 +139,7 @@ export default async function TheBestDamnLandingPageEver() { MCP client. - + diff --git a/apps/web/src/components/supply-side-cta.tsx b/apps/web/src/components/supply-side-cta.tsx index fee18fc1..ceebbac3 100644 --- a/apps/web/src/components/supply-side-cta.tsx +++ b/apps/web/src/components/supply-side-cta.tsx @@ -9,6 +9,7 @@ import { GitHubIcon } from '@/icons/github' import { calendarBookingUrl, docsPublishingQuickStartUrl, + docsPublishingUrl, githubUrl } from '@/lib/config' @@ -19,7 +20,7 @@ export function SupplySideCTA({ variant = 'github', heroVariant = 'orange' }: { - variant?: 'book-call' | 'github' | 'github-2' + variant?: 'book-call' | 'docs' | 'github' | 'github-2' heroVariant?: HeroButtonVariant }) { const ctx = useAgentic() @@ -47,6 +48,10 @@ export function SupplySideCTA({ Star us on GitHub + ) : variant === 'docs' ? ( + ) : (