From 4ab4271b79922f8de8b4ff7e73eb8b75374002b2 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 20:10:13 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 549975b..d6f3fb1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,22 @@ import type { Metadata } from "next"; -import { Source_Sans_3 } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; +import { Playfair_Display } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const playfairDisplay = Playfair_Display({ + variable: "--font-playfair-display", subsets: ["latin"], }); export const metadata: Metadata = { title: "Premium Hijabs | Elegant, Comfortable & Affordable", description: "Discover our curated collection of premium hijabs in various styles and fabrics. Quality, comfort, and elegance for the modern woman.", keywords: "hijab, modest fashion, premium hijabs, comfortable wraps, elegant styles", openGraph: { - title: "Premium Hijabs | Elegant, Comfortable & Affordable", description: "Discover our curated collection of premium hijabs in various styles and fabrics. Quality, comfort, and elegance for the modern woman.", siteName: "Hijab Store", type: "website", images: [ + title: "Premium Hijabs | Elegant, Comfortable & Affordable", description: "Discover our curated collection of premium hijabs in various styles and fabrics. Quality, comfort, and elegance for the modern woman.", siteName: "Vanessa Hijab Store", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/close-up-hands-holding-plants_23-2149226602.jpg", alt: "hijab collection fashion elegant" } @@ -41,7 +36,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 21be7d9edec7276af685a7e2e2cd46a8686119cb Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 20:10:14 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 396c7a6..9700268 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -27,13 +27,13 @@ export default function LandingPage() { > @@ -202,8 +202,8 @@ export default function LandingPage() { Date: Tue, 3 Mar 2026 20:10:15 +0000 Subject: [PATCH 3/3] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index bbb522f..0f9f89d 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-source-sans-3), sans-serif; + font-family: var(--font-poppins), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-source-sans-3), sans-serif; + font-family: var(--font-poppins), sans-serif; } -- 2.49.1