Skip to content

Commit 6544ec2

Browse files
committed
feat: Copy changes
1 parent b4297f4 commit 6544ec2

File tree

4 files changed

+28
-8
lines changed

4 files changed

+28
-8
lines changed

apps/web/components/pages/HomePage/Pricing/CommercialCard.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { Button, Switch } from "@cap/ui";
22
import {
33
faBriefcase,
44
faDownload,
5+
faEdit,
56
faMinus,
67
faPlus,
78
faVideo,
@@ -174,6 +175,14 @@ export const CommercialCard = () => {
174175

175176
<div className="space-y-6">
176177
<ul className="space-y-3">
178+
<li className="flex items-center text-sm text-gray-12">
179+
<FontAwesomeIcon
180+
icon={faEdit}
181+
className="flex-shrink-0 mr-3 text-gray-12"
182+
style={{ fontSize: "14px", minWidth: "14px" }}
183+
/>
184+
<span>Studio Mode with full editor</span>
185+
</li>
177186
<li className="flex items-center text-sm text-gray-12">
178187
<FontAwesomeIcon
179188
icon={faBriefcase}
@@ -197,7 +206,9 @@ export const CommercialCard = () => {
197206
className="flex-shrink-0 mr-3 text-gray-12"
198207
style={{ fontSize: "14px", minWidth: "14px" }}
199208
/>
200-
<span>Unlimited local recordings</span>
209+
<span>
210+
Unlimited local recordings, shareable links up to 5 minutes
211+
</span>
201212
</li>
202213
<li className="flex items-center text-sm text-gray-12">
203214
<FontAwesomeIcon

apps/web/components/pages/HomePage/Pricing/EnterpriseCard.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
} from "@fortawesome/free-solid-svg-icons";
99
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
1010
import { useRef } from "react";
11-
import { EnterpriseArt, EnterpriseArtRef } from "./EnterpriseArt";
11+
import { EnterpriseArt, type EnterpriseArtRef } from "./EnterpriseArt";
1212

1313
export const EnterpriseCard = () => {
1414
const enterpriseArtRef = useRef<EnterpriseArtRef>(null);
@@ -28,7 +28,7 @@ export const EnterpriseCard = () => {
2828
},
2929
{
3030
icon: faServer,
31-
label: "Self-hosting Support",
31+
label: "Managed self-hosting",
3232
},
3333
{
3434
icon: faUsers,
@@ -78,7 +78,7 @@ export const EnterpriseCard = () => {
7878

7979
<div className="space-y-6">
8080
<ul className="space-y-3">
81-
{enterpriseFeatures.slice(0, 4).map((feature) => (
81+
{enterpriseFeatures.map((feature) => (
8282
<li
8383
key={feature.label}
8484
className="flex items-center text-sm text-gray-12"

apps/web/components/pages/HomePage/Pricing/ProCard.tsx

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { Button, Switch } from "@cap/ui";
22
import { getProPlanId } from "@cap/utils";
33
import {
44
faCloud,
5+
faCreditCard,
56
faLink,
67
faMagic,
78
faMinus,
@@ -119,7 +120,7 @@ export const ProCard = () => {
119120
<h3 className="mb-2 text-xl font-semibold text-center">
120121
{homepageCopy.pricing.pro.title}
121122
</h3>
122-
<p className="mb-4 text-sm font-medium text-center text-gray-9">
123+
<p className="mb-4 text-sm font-medium text-center text-gray-6">
123124
{homepageCopy.pricing.pro.description}
124125
</p>
125126
</div>
@@ -247,14 +248,22 @@ export const ProCard = () => {
247248

248249
<div className="mb-6">
249250
<ul className="space-y-3">
251+
<li className="flex items-center text-sm text-gray-1">
252+
<FontAwesomeIcon
253+
icon={faCreditCard}
254+
className="flex-shrink-0 mr-3 text-gray-4"
255+
style={{ fontSize: "14px", minWidth: "14px" }}
256+
/>
257+
<span className="text-gray-4">Everything from Desktop License</span>
258+
</li>
250259
<li className="flex items-center text-sm text-gray-1">
251260
<FontAwesomeIcon
252261
icon={faCloud}
253262
className="flex-shrink-0 mr-3 text-gray-4"
254263
style={{ fontSize: "14px", minWidth: "14px" }}
255264
/>
256265
<span className="text-gray-4">
257-
Unlimited cloud storage & shareable links
266+
Unlimited cloud storage & unlimited shareable links
258267
</span>
259268
</li>
260269
<li className="flex items-center text-sm text-gray-1">
@@ -264,7 +273,7 @@ export const ProCard = () => {
264273
style={{ fontSize: "14px", minWidth: "14px" }}
265274
/>
266275
<span className="text-gray-4">
267-
Automatic AI title, transcription, summary, and chapter generation
276+
Automatic AI title, transcription, summary, and chapters
268277
</span>
269278
</li>
270279
<li className="flex items-center text-sm">

apps/web/data/homepage-copy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ export const homepageCopy: HomePageCopy = {
224224
badge: "Best value",
225225
title: "Cap Pro",
226226
description:
227-
"Everything in Desktop plus cloud features for seamless sharing and collaboration.",
227+
"Everything in Desktop plus unlimited cloud features for seamless sharing and collaboration.",
228228
features: [
229229
"Everything in Desktop License",
230230
"Unlimited cloud storage & bandwidth",

0 commit comments

Comments
 (0)