diff --git a/apps/web/src/modules/marketing/layout/footer.tsx b/apps/web/src/modules/marketing/layout/footer.tsx index a204054..6844319 100644 --- a/apps/web/src/modules/marketing/layout/footer.tsx +++ b/apps/web/src/modules/marketing/layout/footer.tsx @@ -1,189 +1,141 @@ -import { getTranslation } from "@turbostarter/i18n/server"; -import { isExternal } from "@turbostarter/shared/utils"; +import Link from "next/link"; + import { BuiltWith } from "@turbostarter/ui-web/built-with"; import { Icons } from "@turbostarter/ui-web/icons"; import { appConfig } from "~/config/app"; import { pathsConfig } from "~/config/paths"; import { I18nControls } from "~/modules/common/i18n/controls"; -import { TurboLink } from "~/modules/common/turbo-link"; -const socials = [ - { - id: "x", - href: "https://x.com/turbostarter_", - icon: Icons.Twitter, - }, - { - id: "github", - href: "https://github.com/turbostarter", - icon: Icons.Github, - }, +const REPO_URL = "https://github.com/alezmad/claudemesh"; +const OSS_URL = "https://github.com/alezmad/claude-intercom"; +const columns = [ { - id: "facebook", - href: "#", - icon: Icons.Facebook, + label: "product", + items: [ + { title: "Docs", href: "#docs" }, + { title: "Pricing", href: pathsConfig.marketing.pricing }, + { title: "Changelog", href: "#changelog" }, + { title: "Contact", href: pathsConfig.marketing.contact }, + ], }, { - id: "linkedin", - href: "#", - icon: Icons.Linkedin, + label: "protocol", + items: [ + { title: "GitHub", href: REPO_URL }, + { title: "claude-intercom (OSS)", href: OSS_URL }, + { title: "Protocol spec", href: `${OSS_URL}#protocol` }, + { title: "Self-host broker", href: `${REPO_URL}#self-host` }, + ], }, ]; -const links = [ - { - label: "common:product", - items: [ - { - title: "marketing:product.mobile.ios.title", - href: "https://turbostarter.dev", - }, - { - title: "marketing:product.mobile.android.title", - href: "https://turbostarter.dev", - }, - { - title: "marketing:product.extension.chrome.title", - href: "https://chromewebstore.google.com/detail/bcjmonmlfbnngpkllpnpmnjajaciaboo", - }, - { - title: "marketing:product.extension.firefox.title", - href: "https://addons.mozilla.org/addon/turbostarter_", - }, - { - title: "marketing:product.extension.edge.title", - href: "https://microsoftedge.microsoft.com/addons/detail/turbostarter/ianbflanmmoeleokihabnmmcahhfijig", - }, - ], - }, - { - label: "resources", - items: [ - { - title: "marketing:contact.label", - href: pathsConfig.marketing.contact, - }, - { - title: "marketing:roadmap.title", - href: "https://github.com/orgs/turbostarter/projects/1", - }, - { - title: "marketing:docs.title", - href: "https://turbostarter.dev/docs/web", - }, - { - title: "marketing:api.title", - href: "#", - }, - ], - }, - { - label: "about", - items: [ - { - title: "billing:pricing.label", - href: pathsConfig.marketing.pricing, - }, - { - title: "marketing:blog.label", - href: pathsConfig.marketing.blog.index, - }, - ], - }, - { - label: "legal.label", - items: [ - { - title: "legal.privacy", - href: pathsConfig.marketing.legal("privacy-policy"), - }, - { - title: "legal.terms", - href: pathsConfig.marketing.legal("terms-and-conditions"), - }, - ], - }, -] as const; - -export const Footer = async () => { - const { t } = await getTranslation({ - ns: ["common", "marketing", "billing"], - }); - +export const Footer = () => { return ( - diff --git a/apps/web/src/modules/user/settings/billing/manage-plan.tsx b/apps/web/src/modules/user/settings/billing/manage-plan.tsx index 63004a9..28be8c0 100644 --- a/apps/web/src/modules/user/settings/billing/manage-plan.tsx +++ b/apps/web/src/modules/user/settings/billing/manage-plan.tsx @@ -48,24 +48,39 @@ export const ManagePlan = () => { - + {plan.id === PricingPlanType.FREE ? ( + // v0.1.0: only the free tier is live. Paid-tier checkout + + // Stripe customer portal land post-launch; surface that + // honestly instead of a button that would hit a 500. +
+ + + Paid tiers coming soon + +
+ ) : ( + + )}
);