diff --git a/apps/web/app/(marketing)/_components/site-header-account-section.tsx b/apps/web/app/(marketing)/_components/site-header-account-section.tsx index 07db7617b..8b40a0fd9 100644 --- a/apps/web/app/(marketing)/_components/site-header-account-section.tsx +++ b/apps/web/app/(marketing)/_components/site-header-account-section.tsx @@ -61,14 +61,14 @@ function AuthButtons() { - - diff --git a/apps/web/app/(marketing)/_components/site-page-header.tsx b/apps/web/app/(marketing)/_components/site-page-header.tsx index 9ddae6f8b..5fded2637 100644 --- a/apps/web/app/(marketing)/_components/site-page-header.tsx +++ b/apps/web/app/(marketing)/_components/site-page-header.tsx @@ -8,7 +8,7 @@ export function SitePageHeader(props: { return (
-

{props.title}

+

{props.title}

- - -

); } diff --git a/apps/web/public/locales/en/common.json b/apps/web/public/locales/en/common.json index 9cc89df0d..d0c75538f 100644 --- a/apps/web/public/locales/en/common.json +++ b/apps/web/public/locales/en/common.json @@ -37,6 +37,7 @@ "collapseSidebar": "Collapse Sidebar", "documentation": "Documentation", "getStarted": "Get Started", + "getStartedWithPlan": "Get Started with {{plan}}", "retry": "Retry", "contactUs": "Contact Us", "loading": "Loading. Please wait...", diff --git a/packages/billing/gateway/src/components/pricing-table.tsx b/packages/billing/gateway/src/components/pricing-table.tsx index d723a3ad0..ab7527edd 100644 --- a/packages/billing/gateway/src/components/pricing-table.tsx +++ b/packages/billing/gateway/src/components/pricing-table.tsx @@ -4,7 +4,7 @@ import { useState } from 'react'; import Link from 'next/link'; -import { ArrowRight, CheckCircle, Sparkles } from 'lucide-react'; +import { ArrowRight, CheckCircle, Circle, Sparkles } from 'lucide-react'; import { z } from 'zod'; import { @@ -153,7 +153,7 @@ function PricingItem( className={cn( props.className, `s-full flex flex-1 grow flex-col items-stretch justify-between space-y-8 self-stretch - rounded-lg p-6 ring-2 lg:w-4/12 xl:max-w-[19rem]`, + rounded-lg p-8 ring-2 lg:w-4/12 xl:max-w-[20rem]`, { ['ring-primary']: highlighted, ['dark:shadow-primary/30 shadow-none ring-transparent dark:shadow-sm']: @@ -161,11 +161,11 @@ function PricingItem( }, )} > -
-
+
+
- - + + - + @@ -189,11 +189,7 @@ function PricingItem(
- + - + } @@ -255,6 +251,7 @@ function PricingItem( fallback={ @@ -271,11 +268,7 @@ function PricingItem( -
-
- -
- +
- + {children}
@@ -340,8 +329,8 @@ function Price({ children }: React.PropsWithChildren) { function ListItem({ children }: React.PropsWithChildren) { return ( -
  • - +
  • + , @@ -418,17 +412,23 @@ function DefaultCheckoutButton( const linkHref = props.plan.href ?? `${props.signUpPath}?utm_source=${props.plan.id}` ?? ''; - const label = props.plan.label ?? 'common:getStarted'; + const label = props.plan.label ?? 'common:getStartedWithPlan'; return (