From 92c5c7bdb1b47c9552ea305d10d53fe0006fa31a Mon Sep 17 00:00:00 2001 From: Wesley Souza | Neo Date: Tue, 7 Jan 2025 20:38:24 -0300 Subject: [PATCH] feat(acquire-plan-button.tsx): :sparkles: update the texts to convert more and add a icon --- app/subscriptions/_components/acquire-plan-button.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/subscriptions/_components/acquire-plan-button.tsx b/app/subscriptions/_components/acquire-plan-button.tsx index a82dade..cbd49b7 100644 --- a/app/subscriptions/_components/acquire-plan-button.tsx +++ b/app/subscriptions/_components/acquire-plan-button.tsx @@ -5,6 +5,7 @@ import { createStripeCheckout } from "../_actions/create-stripe-checkout"; import { loadStripe } from "@stripe/stripe-js"; import { useUser } from "@clerk/nextjs"; import Link from "next/link"; +import { SparklesIcon } from "lucide-react"; const AcquirePlanButton = () => { const { user } = useUser(); @@ -38,7 +39,8 @@ const AcquirePlanButton = () => { className="w-full rounded-full font-bold" onClick={handleAcquirePlanClick} > - Adquirir plano + + Fazer upgrade! ); };