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
); };