Skip to content

Commit efdf385

Browse files
authored
chore: fix text (#1134)
* deceiving dev * Update Testimonials.tsx * corrections
1 parent 3fb2062 commit efdf385

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

apps/web/components/pages/HomePage/Features.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,9 @@ const features: Feature[] = homepageCopy.features.features.map(
149149
const Features = () => {
150150
return (
151151
<div className="text-center max-w-[1440px] mx-auto px-5">
152-
<h1 className="mb-3">{homepageCopy.features.title}</h1>
152+
<h1 className="mb-3 text-4xl font-medium text-gray-12">
153+
{homepageCopy.features.title}
154+
</h1>
153155
<p className="text-lg text-gray-10 leading-[1.75rem] w-full max-w-[600px] mx-auto">
154156
{homepageCopy.features.subtitle}
155157
</p>

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ const Pricing = () => {
1111
return (
1212
<div className="w-full max-w-[1100px] mx-auto px-5">
1313
<div className="px-5 mb-16 text-center">
14-
<h1 className="mb-3 w-full">{homepageCopy.pricing.title}</h1>
14+
<h1 className="mb-3 w-full text-4xl font-medium text-gray-12">
15+
{homepageCopy.pricing.title}
16+
</h1>
1517
<p className="text-lg text-gray-10 max-w-[800px] mx-auto leading-[1.75rem] w-full">
1618
{homepageCopy.pricing.subtitle}
1719
</p>

apps/web/components/pages/HomePage/RecordingModes.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ const RecordingModes = () => {
5656
return (
5757
<div className="w-full max-w-[1000px] mx-auto px-5">
5858
<div className="flex flex-col gap-2 justify-center items-center text-center">
59-
<h1 className="text-4xl font-medium text-12">
59+
<h1 className="text-4xl font-medium text-gray-12">
6060
{homepageCopy.recordingModes.title}
6161
</h1>
62-
<p className="text-lg text-gray-10">
62+
<p className="text-lg text-gray-10 w-full max-w-[670px] mx-auto">
6363
{homepageCopy.recordingModes.subtitle}
6464
</p>
6565
</div>

apps/web/components/pages/HomePage/Testimonials.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@ const Testimonials = () => {
121121
return (
122122
<div className="w-full max-w-[1200px] mx-auto md:px-5">
123123
<div className="px-5 mb-16 text-center">
124-
<h1 className="mb-3 w-full max-w-[500px] mx-auto text-balance">
124+
<h1 className="mx-auto mb-3 w-full text-4xl font-medium text-gray-12 text-balance">
125125
{homepageCopy.testimonials.title}
126126
</h1>
127-
<p className="text-lg text-gray-10 text-balance mx-auto leading-[1.75rem] w-full max-w-[500px]">
127+
<p className="text-lg text-gray-10 w-full max-w-[400px] mx-auto leading-[1.75rem]">
128128
{homepageCopy.testimonials.subtitle}
129129
</p>
130130
</div>

0 commit comments

Comments
 (0)