Skip to content

Commit 68f7965

Browse files
committed
feat: enhance pricing cards with promotional savings badges for Pro and Enterprise plans
1 parent 7cf231d commit 68f7965

1 file changed

Lines changed: 16 additions & 6 deletions

File tree

src/pages/Home.tsx

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -965,9 +965,14 @@ const Home: React.FC = () => {
965965
<CardHeader className="pt-8">
966966
<CardTitle className="text-2xl">Pro</CardTitle>
967967
<CardDescription>Best value for serious job seekers</CardDescription>
968-
<div className="mt-4">
969-
<span className="text-4xl font-bold">$100</span>
970-
<span className="text-muted-foreground"> / 6,000 credits</span>
968+
<div className="mt-4 flex flex-wrap items-baseline gap-3">
969+
<div>
970+
<span className="text-4xl font-bold">$100</span>
971+
<span className="text-muted-foreground"> / 6,000 credits</span>
972+
</div>
973+
<span className="animate-pulse rounded-full bg-gradient-to-r from-green-500 to-emerald-600 px-4 py-1.5 text-sm font-bold text-white shadow-lg ring-2 ring-green-400/50">
974+
💰 Save 50%
975+
</span>
971976
</div>
972977
<p className="mt-2 text-sm text-muted-foreground">
973978
~600 minutes of AI assistance
@@ -1017,9 +1022,14 @@ const Home: React.FC = () => {
10171022
<CardHeader>
10181023
<CardTitle className="text-2xl">Enterprise</CardTitle>
10191024
<CardDescription>For heavy users and teams</CardDescription>
1020-
<div className="mt-4">
1021-
<span className="text-4xl font-bold">$500</span>
1022-
<span className="text-muted-foreground"> / 60,000 credits</span>
1025+
<div className="mt-4 flex flex-wrap items-baseline gap-3">
1026+
<div>
1027+
<span className="text-4xl font-bold">$500</span>
1028+
<span className="text-muted-foreground"> / 60,000 credits</span>
1029+
</div>
1030+
<span className="animate-pulse rounded-full bg-gradient-to-r from-amber-500 via-orange-500 to-red-500 px-4 py-1.5 text-sm font-bold text-white shadow-lg ring-2 ring-orange-400/50">
1031+
🔥 Save 75%
1032+
</span>
10231033
</div>
10241034
<p className="mt-2 text-sm text-muted-foreground">
10251035
~6,000 minutes of AI assistance

0 commit comments

Comments
 (0)