Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/components/Newsletter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Newsletter = () => {
<div className="bg-black rounded-3xl px-12 py-8 flex items-center justify-between">
{/* Left side - Text */}
<div className="flex-1">
<h2 className="text-white text-4xl font-bold leading-tight">
<h2 className="text-white text-4xl font-bold leading-tight font-heading">
STAY UPTO DATE ABOUT
<br />
OUR LATEST OFFERS
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Footer = () => {
<div className="grid grid-cols-5 gap-8 mb-8">
{/* Brand Section */}
<div className="col-span-1">
<h3 className="text-3xl font-bold text-black mb-4">SHOP.CO</h3>
<h3 className="text-3xl font-bold text-black mb-4 font-heading">SHOP.CO</h3>
<p className="text-gray-600 text-sm leading-relaxed mb-6">
We have clothes that suits your style and which you're proud to wear. From women to men.
</p>
Expand Down
2 changes: 1 addition & 1 deletion client/src/index.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

@import url(https://db.onlinewebfonts.com/c/f1fcc5aed1e20fc0cdb9f8a7573625bd?family=Integral+CF+Regular);
@import url('https://db.onlinewebfonts.com/c/f1fcc5aed1e20fc0cdb9f8a7573625bd?family=Integral+CF+Regular');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,301,400,401,500,501,700,701,900,901,1,2&display=swap');

@tailwind base;
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/home/sections/NewArrivals.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const NewArrivals = () => {
<div className="max-w-7xl mx-auto px-8">
{/* Section Title */}
<div className="text-center mb-8">
<h2 className="text-3xl font-bold text-black mb-6">NEW ARRIVALS</h2>
<h2 className="text-3xl font-bold text-black mb-6 font-heading">NEW ARRIVALS</h2>
</div>

{/* Products Grid */}
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/home/sections/TopSelling.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const TopSelling = () => {
<div className="max-w-7xl mx-auto px-8">
{/* Section Title */}
<div className="text-center mb-8">
<h2 className="text-3xl font-bold text-black mb-6">TOP SELLING</h2>
<h2 className="text-3xl font-bold text-black mb-6 font-heading">TOP SELLING</h2>
</div>

{/* Products Grid */}
Expand Down