From cdd7931837d8dbc8fce0b1dd047d24f32327948c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Guti=C3=A9rrez?= <35082514+alezmad@users.noreply.github.com> Date: Sun, 5 Apr 2026 15:02:52 +0100 Subject: [PATCH] fix(web): built-with credits claude-intercom instead of turbostarter.dev MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Footer "Built with ✦ TurboStarter" link → "Built on ⎇ claude-intercom · MIT". Credits the MIT OSS foundation claudemesh sits on and aligns with the GitHub icon in the header already pointing at alezmad/claude-intercom. Dropped the 512-byte TurboStarter wordmark SVG + the large brand icon. Kept a lean GitHub glyph + text so it reads as attribution, not ad. Co-Authored-By: Claude Opus 4.6 (1M context) --- packages/ui/web/src/components/built-with.tsx | 49 ++++++------------- 1 file changed, 16 insertions(+), 33 deletions(-) diff --git a/packages/ui/web/src/components/built-with.tsx b/packages/ui/web/src/components/built-with.tsx index ab54a51..a686ae5 100644 --- a/packages/ui/web/src/components/built-with.tsx +++ b/packages/ui/web/src/components/built-with.tsx @@ -2,7 +2,6 @@ import * as React from "react"; -import { useTranslation } from "@turbostarter/i18n"; import { cn } from "@turbostarter/ui"; import { buttonVariants } from "#components/button"; @@ -11,49 +10,33 @@ export const BuiltWith = ({ className, ...props }: React.ComponentProps<"a">) => { - const { t } = useTranslation("common"); - return ( - {t("builtWith")}{" "} -
- - - - - - - -
+ Built on + + claude-intercom + · MIT
); };