From 4dbd4495c5eec22a76c1bb2b43d1d3ec31231e7b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 14:34:17 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bdd0bc5..84bae94 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,30 +1,26 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; +import { Poppins } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], +}); + export const metadata: Metadata = { title: "Fashion & Lifestyle Store | Premium Collections", description: "Shop premium fashion and lifestyle collections. Discover elegant women's wear, sophisticated menswear, and exclusive accessories.", keywords: "fashion, clothing, lifestyle, shopping, premium wear, accessories", openGraph: { - title: "Fashion & Lifestyle Store | Premium Collections", description: "Shop premium fashion and lifestyle collections with fast shipping and easy returns.", siteName: "Fashion Store", type: "website"}, + title: "Fashion & Lifestyle Store | Premium Collections", description: "Shop premium fashion and lifestyle collections with fast shipping and easy returns.", siteName: "Fashion Store", type: "website" + }, twitter: { - card: "summary_large_image", title: "Premium Fashion & Lifestyle Collections", description: "Discover elegant and sophisticated fashion pieces for every occasion."}, + card: "summary_large_image", title: "Premium Fashion & Lifestyle Collections", description: "Discover elegant and sophisticated fashion pieces for every occasion." + }, robots: { index: true, follow: true, @@ -40,7 +36,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 67ade4565ed0a1a5ece1cae26ede2928677d12db Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 14:34:17 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 62 +++++++++++++++++++++++++++++++++--------------- 1 file changed, 43 insertions(+), 19 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 682ef06..c503081 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,7 +33,7 @@ export default function LandingPage() { { name: "Women", id: "women" }, { name: "Men", id: "men" }, { name: "New Arrivals", id: "products" }, - { name: "Sale", id: "about" }, + { name: "Sale", id: "testimonials" }, { name: "Contact", id: "contact" } ]} button={{ text: "Shop Now", href: "products" }} @@ -67,28 +67,52 @@ export default function LandingPage() { ]} mediaAnimation="blur-reveal" buttons={[ - { text: "Shop Women", href: "#products" }, - { text: "Shop Men", href: "#products" } + { text: "Shop Women", href: "women" }, + { text: "Shop Men", href: "men" } ]} buttonAnimation="slide-up" /> -
+
+
+ +
+ Date: Thu, 5 Mar 2026 14:34:17 +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 eda06bc..ca36cb1 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-font-inter-tight), 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-font-inter-tight), sans-serif; + font-family: var(--font-dm-sans), sans-serif; } -- 2.49.1