diff --git a/apps/www/public/r/styles/default/pricing-01.json b/apps/www/public/r/styles/default/pricing-01.json index 165d3517fa3..01c7ce4d2e1 100644 --- a/apps/www/public/r/styles/default/pricing-01.json +++ b/apps/www/public/r/styles/default/pricing-01.json @@ -23,7 +23,7 @@ }, { "path": "blocks/pricing-01/components/pricing-card.tsx", - "content": "import { ArrowRight, Check } from \"lucide-react\"\n\nimport { cn } from \"@/lib/utils\"\nimport { Button } from \"@/registry/default/ui/button\"\nimport {\n Card,\n CardContent,\n CardFooter,\n CardHeader,\n} from \"@/registry/default/ui/card\"\n\ninterface Feature {\n name: string\n highlight?: boolean\n included: boolean\n}\n\ninterface PricingCardProps {\n name: string\n price: number\n description: string\n features: Feature[]\n highlight?: boolean\n cta?: string\n}\n\nexport function PricingCard({\n name,\n price,\n description,\n features,\n highlight,\n cta = \"Get started\",\n}: PricingCardProps) {\n return (\n \n \n \n {name}\n \n
\n \n ${price}\n \n \n one-time\n \n
\n \n {description}\n

\n
\n\n \n {features.map((feature) => (\n
\n \n \n
\n \n {feature.name}\n \n \n ))}\n
\n \n \n \n {cta}\n \n \n \n \n \n )\n}\n", + "content": "import { ArrowRight, Check } from \"lucide-react\"\n\nimport { cn } from \"@/lib/utils\"\nimport { Button } from \"@/registry/default/ui/button\"\nimport {\n Card,\n CardContent,\n CardFooter,\n CardHeader,\n} from \"@/registry/default/ui/card\"\n\ninterface Feature {\n name: string\n highlight?: boolean\n included: boolean\n}\n\ninterface PricingCardProps {\n name: string\n price: number\n description: string\n features: Feature[]\n highlight?: boolean\n cta?: string\n}\n\nexport function PricingCard({\n name,\n price,\n description,\n features,\n highlight,\n cta = \"Get started\",\n}: PricingCardProps) {\n return (\n \n \n \n {name}\n \n
\n \n ${price}\n \n \n one-time\n \n
\n \n {description}\n

\n
\n\n \n {features.map((feature) => (\n
\n \n \n
\n \n {feature.name}\n \n \n ))}\n
\n \n \n \n {cta}\n \n \n \n \n \n )\n}\n", "type": "registry:component", "target": "" }, diff --git a/apps/www/public/r/styles/new-york/pricing-01.json b/apps/www/public/r/styles/new-york/pricing-01.json index c014a763c2b..fa34801b111 100644 --- a/apps/www/public/r/styles/new-york/pricing-01.json +++ b/apps/www/public/r/styles/new-york/pricing-01.json @@ -23,7 +23,7 @@ }, { "path": "blocks/pricing-01/components/pricing-card.tsx", - "content": "import { ArrowRight, Check } from \"lucide-react\"\n\nimport { cn } from \"@/lib/utils\"\nimport { Button } from \"@/registry/new-york/ui/button\"\nimport {\n Card,\n CardContent,\n CardFooter,\n CardHeader,\n} from \"@/registry/new-york/ui/card\"\n\ninterface Feature {\n name: string\n highlight?: boolean\n included: boolean\n}\n\ninterface PricingCardProps {\n name: string\n price: number\n description: string\n features: Feature[]\n highlight?: boolean\n cta?: string\n}\n\nexport function PricingCard({\n name,\n price,\n description,\n features,\n highlight,\n cta = \"Get started\",\n}: PricingCardProps) {\n return (\n \n \n \n {name}\n \n
\n \n ${price}\n \n \n one-time\n \n
\n \n {description}\n

\n
\n\n \n {features.map((feature) => (\n
\n \n \n
\n \n {feature.name}\n \n \n ))}\n
\n \n \n \n {cta}\n \n \n \n \n \n )\n}\n", + "content": "import { ArrowRight, Check } from \"lucide-react\"\n\nimport { cn } from \"@/lib/utils\"\nimport { Button } from \"@/registry/new-york/ui/button\"\nimport {\n Card,\n CardContent,\n CardFooter,\n CardHeader,\n} from \"@/registry/new-york/ui/card\"\n\ninterface Feature {\n name: string\n highlight?: boolean\n included: boolean\n}\n\ninterface PricingCardProps {\n name: string\n price: number\n description: string\n features: Feature[]\n highlight?: boolean\n cta?: string\n}\n\nexport function PricingCard({\n name,\n price,\n description,\n features,\n highlight,\n cta = \"Get started\",\n}: PricingCardProps) {\n return (\n \n \n \n {name}\n \n
\n \n ${price}\n \n \n one-time\n \n
\n \n {description}\n

\n
\n\n \n {features.map((feature) => (\n
\n \n \n
\n \n {feature.name}\n \n \n ))}\n
\n \n \n \n {cta}\n \n \n \n \n \n )\n}\n", "type": "registry:component", "target": "" }, diff --git a/apps/www/registry/default/blocks/pricing-01/components/pricing-card.tsx b/apps/www/registry/default/blocks/pricing-01/components/pricing-card.tsx index cb550a8c809..9a08735c704 100644 --- a/apps/www/registry/default/blocks/pricing-01/components/pricing-card.tsx +++ b/apps/www/registry/default/blocks/pricing-01/components/pricing-card.tsx @@ -92,6 +92,7 @@ export function PricingCard({