From aa3807a69a1e8acca643322c462e1efd3bf58171 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 17:25:12 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 8420d03..2f9fd4f 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -88,7 +88,7 @@ export default function AboutPage() { title: "Casio Collection", description: "Digital and analog Casio watches in various styles and conditions", tag: "Popular", - imageSrc: "http://img.b2bpic.net/free-photo/minimalist-tech-setup-with-smartwatch_58702-17214.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/minimalist-tech-setup-with-smartwatch_58702-17214.jpg?_wi=5", imageAlt: "Casio Watch Collection", }, { @@ -96,7 +96,7 @@ export default function AboutPage() { title: "Seiko Selection", description: "Premium Japanese Seiko timepieces with steel bracelets", tag: "Premium", - imageSrc: "http://img.b2bpic.net/free-photo/handsome-businesman-summer-city_1157-25611.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/handsome-businesman-summer-city_1157-25611.jpg?_wi=2", imageAlt: "Seiko Watch Selection", }, { @@ -104,7 +104,7 @@ export default function AboutPage() { title: "Other Brands", description: "Telva, Lotus, Omax and more authentic pre-owned watches", tag: "Diverse", - imageSrc: "http://img.b2bpic.net/free-photo/person-sharing-feelings-emotions-therapy-session_23-2151073976.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/person-sharing-feelings-emotions-therapy-session_23-2151073976.jpg?_wi=3", imageAlt: "Other Brand Watches", }, ]} @@ -160,7 +160,7 @@ export default function AboutPage() { role: "Verified Buyer", company: "Karachi", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-working-as-nurse_23-2151061623.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-working-as-nurse_23-2151061623.jpg?_wi=2", imageAlt: "Pakistani professional man portrait headshot", }, { @@ -169,7 +169,7 @@ export default function AboutPage() { role: "Verified Buyer", company: "Lahore", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=2", imageAlt: "Pakistani professional woman portrait headshot", }, { @@ -178,7 +178,7 @@ export default function AboutPage() { role: "Verified Buyer", company: "Islamabad", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/man-talking-phone-front-view_23-2149915914.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-talking-phone-front-view_23-2149915914.jpg?_wi=2", imageAlt: "Pakistani man customer portrait professional", }, { @@ -187,7 +187,7 @@ export default function AboutPage() { role: "Verified Buyer", company: "Multan", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/happy-ethnic-executive-woman-looking-camera_1098-20037.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-ethnic-executive-woman-looking-camera_1098-20037.jpg?_wi=2", imageAlt: "Pakistani woman customer portrait professional", }, { @@ -196,7 +196,7 @@ export default function AboutPage() { role: "Verified Buyer", company: "Peshawar", rating: 5, - imageSrc: "http://img.b2bpic.net/free-vector/colored-background-man-laughing_23-2147631736.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/colored-background-man-laughing_23-2147631736.jpg?_wi=2", imageAlt: "Pakistani professional man portrait smiling", }, { @@ -205,7 +205,7 @@ export default function AboutPage() { role: "Verified Buyer", company: "Faisalabad", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-lucky-enthusiastic-cute-redhead-joyful-middleaged-woman-pump-fists-vigorous-excitement-celebratory-smiling-broadly-winning-celebrating-triumphing-success-good-news_1258-46267.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/closeup-lucky-enthusiastic-cute-redhead-joyful-middleaged-woman-pump-fists-vigorous-excitement-celebratory-smiling-broadly-winning-celebrating-triumphing-success-good-news_1258-46267.jpg?_wi=2", imageAlt: "Pakistani professional woman portrait smiling", }, ]} -- 2.49.1 From 23b7f9b4365d0f71fa846f15af085c50db6f07b4 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 17:25:12 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7eeade6..e960636 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Poppins } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const poppins = Poppins({ variable: "--font-poppins", @@ -20,6 +24,41 @@ const poppins = Poppins({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "Flux Watches - Original Pre-Owned Watches Pakistan", + description: "100% authentic pre-owned watches from Casio, Seiko, Telva & more. Trusted across Pakistan. Fast delivery, cash on delivery, WhatsApp support.", + keywords: "pre-owned watches Pakistan, original Casio watches, Seiko timepieces, authentic watches Multan, buy watches online Pakistan", + metadataBase: new URL("https://fluxwatches.pk"), + alternates: { + canonical: "https://fluxwatches.pk", + }, + openGraph: { + title: "Flux Watches - Original Pre-Owned Timepieces", + description: "100% authentic Japanese watches delivered across Pakistan. Casio, Seiko, Telva and more.", + url: "https://fluxwatches.pk", + siteName: "Flux Watches", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ArZchIApxcVpfImnAbjJ0y3n5f/uploaded-1773595400989-kszuf82n.png", + alt: "Flux Watches - Original Pre-Owned Timepieces", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Flux Watches - Original Pre-Owned Watches", + description: "Authentic Japanese timepieces. Trusted by thousands across Pakistan.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ArZchIApxcVpfImnAbjJ0y3n5f/uploaded-1773595400989-kszuf82n.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +67,9 @@ export default function RootLayout({ return ( - + {children}