From 7960c186702384e7660b3e494836f69190a3b2e8 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 09:11:04 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index aa916ff..411009b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -146,7 +146,7 @@ export default function AboutPage() { role: "Sneaker Enthusiast", company: "NYC", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg?_wi=3", imageAlt: "Marcus Johnson", }, { @@ -155,7 +155,7 @@ export default function AboutPage() { role: "Fashion Blogger", company: "Los Angeles", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg?_wi=3", imageAlt: "Sarah Chen", }, { @@ -164,7 +164,7 @@ export default function AboutPage() { role: "Collector", company: "Miami", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-gold-gilded-sweater-black-pants-standing-straight-smiling-looking-happy_176474-55868.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-woman-gold-gilded-sweater-black-pants-standing-straight-smiling-looking-happy_176474-55868.jpg?_wi=3", imageAlt: "David Rodriguez", }, { @@ -173,7 +173,7 @@ export default function AboutPage() { role: "Streetwear Designer", company: "Brooklyn", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/business-woman-working-home_23-2148162643.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/business-woman-working-home_23-2148162643.jpg?_wi=3", imageAlt: "Emma Williams", }, ]} -- 2.49.1 From 76d10b8ba48554f81d0f97b813638d5584aceaaf Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 09:11:04 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 82b392d..84004ef 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 { Roboto } 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 { Roboto } 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 roboto = Roboto({ variable: "--font-roboto", @@ -20,6 +24,39 @@ const roboto = Roboto({ weight: ["100", "300", "400", "500", "700", "900"], }); +export const metadata: Metadata = { + title: "Nijosho - Premium Replica Sneakers | Fast Shipping Worldwide", + description: "Shop authentic-quality replica sneakers at Nijosho. Premium designs, fast 24-48h delivery, 100% satisfaction guaranteed. 50K+ happy customers worldwide.", + keywords: "replica sneakers, designer shoes, fake sneakers, high quality replicas, jordans, yeezys, premium footwear", + metadataBase: new URL("https://nijosho.com"), + alternates: { + canonical: "https://nijosho.com", + }, + openGraph: { + title: "Nijosho - Premium Replica Sneakers", + description: "Discover luxury replica sneakers with authentic quality. Fast worldwide shipping, 100% satisfaction guaranteed.", + url: "https://nijosho.com", + siteName: "Nijosho", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/full-shot-young-woman-with-prosthesis_23-2150585978.jpg", + alt: "Nijosho Premium Replica Sneakers", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Nijosho - Premium Replica Sneakers", + description: "Shop luxury replica sneakers with fast worldwide delivery. 50K+ satisfied customers.", + images: ["http://img.b2bpic.net/free-photo/full-shot-young-woman-with-prosthesis_23-2150585978.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}