Skip to content

Commit 4355c8b

Browse files
committed
About fonts and heading updates
1 parent 401501f commit 4355c8b

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

src/components/about/AboutClients.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ const AboutClients = () => {
77

88
return (
99
<div className="mt-10 sm:mt-20">
10-
<p className="text-2xl sm:text-4xl text-primary-dark dark:text-primary-light font-sans font-semibold">
10+
<p className="font-general-medium text-2xl sm:text-3xl text-center text-primary-dark dark:text-primary-light">
1111
{clientsHeading}
1212
</p>
13-
<div className="grid grid-cols-2 sm:grid-cols-4 mt-10 sm:mt-20 gap-2">
13+
<div className="grid grid-cols-2 sm:grid-cols-4 mt-10 sm:mt-14 gap-2">
1414
{clientsData.map((client) => (
1515
<AboutClientSingle
1616
title={client.title}

src/components/about/AboutCounter.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
const AboutCounter = () => {
22
return (
33
<div className="mt-10 sm:mt-20 bg-primary-light dark:bg-ternary-dark shadow-sm">
4-
<div className="container mx-auto py-20 block sm:flex sm:justify-between items-center">
4+
<div className="font-general-medium container mx-auto py-20 block sm:flex sm:justify-between items-center">
55
<div className="mb-20 sm:mb-0">
6-
<h2 className="text-4xl text-center font-bold text-secondary-dark dark:text-secondary-light mb-2">
6+
<h2 className="text-4xl text-center text-secondary-dark dark:text-secondary-light mb-2">
77
12
88
</h2>
9-
<span className="block text-md text-center text-ternary-dark dark:text-ternary-light">
9+
<span className="font-general-regular block text-md text-center text-ternary-dark dark:text-ternary-light">
1010
Years of experience
1111
</span>
1212
</div>
1313

1414
<div className="mb-20 sm:mb-0">
15-
<h2 className="text-4xl text-center font-bold text-secondary-dark dark:text-secondary-light mb-2">
15+
<h2 className="text-4xl text-center text-secondary-dark dark:text-secondary-light mb-2">
1616
20k+
1717
</h2>
18-
<span className="block text-md text-center text-ternary-dark dark:text-ternary-light">
18+
<span className="font-general-regular block text-md text-center text-ternary-dark dark:text-ternary-light">
1919
Stars on GitHub
2020
</span>
2121
</div>
2222

2323
<div className="mb-20 sm:mb-0">
24-
<h2 className="text-4xl text-center font-bold text-secondary-dark dark:text-secondary-light mb-2">
24+
<h2 className="text-4xl text-center text-secondary-dark dark:text-secondary-light mb-2">
2525
92%
2626
</h2>
27-
<span className="block text-md text-center text-ternary-dark dark:text-ternary-light">
27+
<span className="font-general-regular block text-md text-center text-ternary-dark dark:text-ternary-light">
2828
Positive feedback
2929
</span>
3030
</div>
3131

3232
<div className="mb-20 sm:mb-0">
33-
<h2 className="text-4xl text-center font-bold text-secondary-dark dark:text-secondary-light mb-2">
33+
<h2 className="text-4xl text-center text-secondary-dark dark:text-secondary-light mb-2">
3434
77
3535
</h2>
36-
<span className="block text-md text-center text-ternary-dark dark:text-ternary-light">
36+
<span className="font-general-regular block text-md text-center text-ternary-dark dark:text-ternary-light">
3737
Projects completed
3838
</span>
3939
</div>

src/components/about/AboutMeBio.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const AboutMeBio = () => {
1414
{/* About me portfolio image end */}
1515

1616
{/* About me details start */}
17-
<div className="w-full sm:w-3/4 text-left">
17+
<div className="font-general-regular w-full sm:w-3/4 text-left">
1818
{aboutMe.map((bio) => (
1919
<p
2020
className="mb-4 text-ternary-dark dark:text-ternary-light text-lg"

src/data/clientsData.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import SamsungImage from '../images/brands/samsung_gray.png';
88
import CanonImage from '../images/brands/canon_gray.png';
99
import PumaImage from '../images/brands/puma_gray.png';
1010

11-
export const clientsHeading = 'Some of the brands I worked with';
11+
export const clientsHeading = 'Some of the brands that trust me';
1212

1313
export const clientsData = [
1414
{

0 commit comments

Comments
 (0)