Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-11 09:11:10 +00:00
5 changed files with 79 additions and 40 deletions

View File

@@ -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",
},
]}

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +79,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -80,7 +80,7 @@ export default function HomePage() {
name: "Jordan Retro High OG",
price: "$89.99",
variant: "Black & Red • 5 Sizes",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg?_wi=1",
imageAlt: "Jordan Retro High OG",
isFavorited: false,
},
@@ -89,7 +89,7 @@ export default function HomePage() {
name: "Yeezy 350 V2",
price: "$94.99",
variant: "Zebra • Multiple Colors",
imageSrc: "http://img.b2bpic.net/free-psd/cool-sneakers-template_23-2151975733.jpg",
imageSrc: "http://img.b2bpic.net/free-psd/cool-sneakers-template_23-2151975733.jpg?_wi=1",
imageAlt: "Yeezy 350 V2",
isFavorited: false,
},
@@ -98,7 +98,7 @@ export default function HomePage() {
name: "Travis Scott Jordan Low",
price: "$99.99",
variant: "Reverse Mocha • Exclusive",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers-showcase_23-2151005695.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers-showcase_23-2151005695.jpg?_wi=1",
imageAlt: "Travis Scott Jordan Low",
isFavorited: false,
},
@@ -177,7 +177,7 @@ export default function HomePage() {
name: "Nike Air Max 90",
price: "$79.99",
variant: "Gradient • Classic Design",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg?_wi=2",
imageAlt: "Nike Air Max 90",
},
{
@@ -185,7 +185,7 @@ export default function HomePage() {
name: "Adidas Ultra Boost",
price: "$84.99",
variant: "White • All Sizes",
imageSrc: "http://img.b2bpic.net/free-psd/cool-sneakers-template_23-2151975733.jpg",
imageSrc: "http://img.b2bpic.net/free-psd/cool-sneakers-template_23-2151975733.jpg?_wi=2",
imageAlt: "Adidas Ultra Boost",
},
{
@@ -193,7 +193,7 @@ export default function HomePage() {
name: "New Balance 990v4",
price: "$89.99",
variant: "Grey • Premium",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers-showcase_23-2151005695.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers-showcase_23-2151005695.jpg?_wi=2",
imageAlt: "New Balance 990v4",
},
{
@@ -201,7 +201,7 @@ export default function HomePage() {
name: "Puma RS-X",
price: "$74.99",
variant: "Black & White • Unisex",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg?_wi=3",
imageAlt: "Puma RS-X",
},
]}
@@ -231,7 +231,7 @@ export default function HomePage() {
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=1",
imageAlt: "Marcus Johnson",
},
{
@@ -240,7 +240,7 @@ export default function HomePage() {
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=1",
imageAlt: "Sarah Chen",
},
{
@@ -249,7 +249,7 @@ export default function HomePage() {
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=1",
imageAlt: "David Rodriguez",
},
{
@@ -258,7 +258,7 @@ export default function HomePage() {
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=1",
imageAlt: "Emma Williams",
},
]}

View File

@@ -72,7 +72,7 @@ export default function ProductDetailPage() {
{ text: "Shop Similar", href: "/products" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg"
imageSrc="http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg?_wi=7"
imageAlt="Jordan Retro High OG Premium Replica"
mediaAnimation="blur-reveal"
imagePosition="right"
@@ -143,7 +143,7 @@ export default function ProductDetailPage() {
name: "Yeezy 350 V2",
price: "$94.99",
variant: "Zebra • Multiple Colors",
imageSrc: "http://img.b2bpic.net/free-psd/cool-sneakers-template_23-2151975733.jpg",
imageSrc: "http://img.b2bpic.net/free-psd/cool-sneakers-template_23-2151975733.jpg?_wi=6",
imageAlt: "Yeezy 350 V2",
isFavorited: false,
},
@@ -152,7 +152,7 @@ export default function ProductDetailPage() {
name: "Travis Scott Jordan Low",
price: "$99.99",
variant: "Reverse Mocha • Exclusive",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers-showcase_23-2151005695.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers-showcase_23-2151005695.jpg?_wi=5",
imageAlt: "Travis Scott Jordan Low",
isFavorited: false,
},
@@ -161,7 +161,7 @@ export default function ProductDetailPage() {
name: "Nike Air Max 90",
price: "$79.99",
variant: "Gradient • Classic Design",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg?_wi=8",
imageAlt: "Nike Air Max 90",
isFavorited: false,
},
@@ -170,7 +170,7 @@ export default function ProductDetailPage() {
name: "Adidas Ultra Boost",
price: "$84.99",
variant: "White • All Sizes",
imageSrc: "http://img.b2bpic.net/free-psd/cool-sneakers-template_23-2151975733.jpg",
imageSrc: "http://img.b2bpic.net/free-psd/cool-sneakers-template_23-2151975733.jpg?_wi=7",
imageAlt: "Adidas Ultra Boost",
isFavorited: false,
},
@@ -202,7 +202,7 @@ export default function ProductDetailPage() {
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=2",
imageAlt: "Marcus Johnson",
},
{
@@ -211,7 +211,7 @@ export default function ProductDetailPage() {
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=2",
imageAlt: "Sarah Chen",
},
{
@@ -220,7 +220,7 @@ export default function ProductDetailPage() {
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=2",
imageAlt: "David Rodriguez",
},
{
@@ -229,7 +229,7 @@ export default function ProductDetailPage() {
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=2",
imageAlt: "Emma Williams",
},
]}

View File

@@ -51,7 +51,7 @@ export default function ProductsPage() {
name: "Jordan Retro High OG",
price: "$89.99",
variant: "Black & Red • 5 Sizes",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg?_wi=4",
imageAlt: "Jordan Retro High OG",
isFavorited: false,
},
@@ -60,7 +60,7 @@ export default function ProductsPage() {
name: "Yeezy 350 V2",
price: "$94.99",
variant: "Zebra • Multiple Colors",
imageSrc: "http://img.b2bpic.net/free-psd/cool-sneakers-template_23-2151975733.jpg",
imageSrc: "http://img.b2bpic.net/free-psd/cool-sneakers-template_23-2151975733.jpg?_wi=3",
imageAlt: "Yeezy 350 V2",
isFavorited: false,
},
@@ -69,7 +69,7 @@ export default function ProductsPage() {
name: "Travis Scott Jordan Low",
price: "$99.99",
variant: "Reverse Mocha • Exclusive",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers-showcase_23-2151005695.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers-showcase_23-2151005695.jpg?_wi=3",
imageAlt: "Travis Scott Jordan Low",
isFavorited: false,
},
@@ -78,7 +78,7 @@ export default function ProductsPage() {
name: "Nike Air Max 90",
price: "$79.99",
variant: "Gradient • Classic Design",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg?_wi=5",
imageAlt: "Nike Air Max 90",
},
{
@@ -86,7 +86,7 @@ export default function ProductsPage() {
name: "Adidas Ultra Boost",
price: "$84.99",
variant: "White • All Sizes",
imageSrc: "http://img.b2bpic.net/free-psd/cool-sneakers-template_23-2151975733.jpg",
imageSrc: "http://img.b2bpic.net/free-psd/cool-sneakers-template_23-2151975733.jpg?_wi=4",
imageAlt: "Adidas Ultra Boost",
},
{
@@ -94,7 +94,7 @@ export default function ProductsPage() {
name: "New Balance 990v4",
price: "$89.99",
variant: "Grey • Premium",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers-showcase_23-2151005695.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers-showcase_23-2151005695.jpg?_wi=4",
imageAlt: "New Balance 990v4",
},
{
@@ -102,7 +102,7 @@ export default function ProductsPage() {
name: "Puma RS-X",
price: "$74.99",
variant: "Black & White • Unisex",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005646.jpg?_wi=6",
imageAlt: "Puma RS-X",
},
{
@@ -110,7 +110,7 @@ export default function ProductsPage() {
name: "Off-White Nike Presto",
price: "$104.99",
variant: "White • Limited Edition",
imageSrc: "http://img.b2bpic.net/free-psd/cool-sneakers-template_23-2151975733.jpg",
imageSrc: "http://img.b2bpic.net/free-psd/cool-sneakers-template_23-2151975733.jpg?_wi=5",
imageAlt: "Off-White Nike Presto",
},
]}