Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-20 05:49:51 +00:00
6 changed files with 72 additions and 33 deletions

View File

@@ -120,7 +120,7 @@ export default function AboutPage() {
buttonText="Contact Us"
termsText="We respond to all inquiries within 24 hours. Let's start a conversation."
mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/stylish-caucasian-woman-trendy-panama-waist-neon-bag-roof-bangkok_343596-17.jpg"
imageSrc="http://img.b2bpic.net/free-photo/stylish-caucasian-woman-trendy-panama-waist-neon-bag-roof-bangkok_343596-17.jpg?_wi=3"
imageAlt="About us contact"
/>
</div>

View File

@@ -66,7 +66,7 @@ export default function ContactPage() {
}}
useInvertedBackground={false}
mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/stylish-caucasian-woman-trendy-panama-waist-neon-bag-roof-bangkok_343596-17.jpg"
imageSrc="http://img.b2bpic.net/free-photo/stylish-caucasian-woman-trendy-panama-waist-neon-bag-roof-bangkok_343596-17.jpg?_wi=4"
imageAlt="Contact support team"
inputPlaceholder="Enter your email"
buttonText="Send Message"

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } 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 { Archivo } 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 archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "ezoresells - Premium Quality. Better Prices. | Refurbished Tech & Streetwear",
description: "Shop affordable, high-quality refurbished earbuds, headphones, smartphones, sneakers, streetwear, and fragrances. Trusted resale brand with 100% quality assurance.",
keywords: "refurbished earbuds, affordable headphones, budget smartphones, quality streetwear, refurbished tech, affordable fragrances, sneakers, tech accessories",
metadataBase: new URL("https://ezoresells.com"),
alternates: {
canonical: "https://ezoresells.com",
},
openGraph: {
title: "ezoresells - Premium Quality. Better Prices.",
description: "Shop tested tech and fashion at unbeatable prices. Quality checked refurbished products you can trust.",
url: "https://ezoresells.com",
siteName: "ezoresells",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/still-life-tech-device_23-2150722606.jpg",
alt: "Premium refurbished products",
},
],
},
twitter: {
card: "summary_large_image",
title: "ezoresells - Premium Quality. Better Prices.",
description: "Affordable, high-quality refurbished tech and fashion",
images: ["http://img.b2bpic.net/free-photo/blond-woman-texting-her-phone_53876-20860.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -68,27 +68,27 @@ export default function HomePage() {
carouselItems={[
{
id: "1",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-tech-device_23-2150722606.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-tech-device_23-2150722606.jpg?_wi=1",
imageAlt: "Premium wireless earbuds",
},
{
id: "2",
imageSrc: "http://img.b2bpic.net/free-photo/blond-woman-texting-her-phone_53876-20860.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blond-woman-texting-her-phone_53876-20860.jpg?_wi=1",
imageAlt: "Refurbished smartphone",
},
{
id: "3",
imageSrc: "http://img.b2bpic.net/free-photo/modern-wireless-earphones-with-case-displayed-round-podium-with-soft-shadows_23-2150808016.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/modern-wireless-earphones-with-case-displayed-round-podium-with-soft-shadows_23-2150808016.jpg?_wi=1",
imageAlt: "Quality headphones",
},
{
id: "4",
imageSrc: "http://img.b2bpic.net/free-photo/teenagers-sitting-together_23-2148105658.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/teenagers-sitting-together_23-2148105658.jpg?_wi=1",
imageAlt: "Fresh sneakers",
},
{
id: "5",
imageSrc: "http://img.b2bpic.net/free-photo/stylish-caucasian-woman-trendy-panama-waist-neon-bag-roof-bangkok_343596-17.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/stylish-caucasian-woman-trendy-panama-waist-neon-bag-roof-bangkok_343596-17.jpg?_wi=1",
imageAlt: "Premium streetwear",
},
{
@@ -134,7 +134,7 @@ export default function HomePage() {
id: "cat-headphones",
name: "Headphones",
price: "From $89",
imageSrc: "http://img.b2bpic.net/free-photo/black-person-wearing-wireless-headphones_482257-97042.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/black-person-wearing-wireless-headphones_482257-97042.jpg?_wi=1",
imageAlt: "Headphones category",
},
{
@@ -155,14 +155,14 @@ export default function HomePage() {
id: "cat-streetwear",
name: "Streetwear",
price: "From $39",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-posing-white-hoodie-leggings-posing-against-white-background_89887-1063.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-posing-white-hoodie-leggings-posing-against-white-background_89887-1063.jpg?_wi=1",
imageAlt: "Streetwear category",
},
{
id: "cat-fragrances",
name: "Fragrances",
price: "From $34",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-skin-care-banner-design_23-2149480194.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-skin-care-banner-design_23-2149480194.jpg?_wi=1",
imageAlt: "Fragrances category",
},
]}
@@ -186,28 +186,28 @@ export default function HomePage() {
id: "best-1",
name: "Apple AirPods Pro",
price: "$149",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-tech-device_23-2150722606.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-tech-device_23-2150722606.jpg?_wi=2",
imageAlt: "Apple AirPods Pro",
},
{
id: "best-2",
name: "iPhone 12 64GB",
price: "$349",
imageSrc: "http://img.b2bpic.net/free-photo/blond-woman-texting-her-phone_53876-20860.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blond-woman-texting-her-phone_53876-20860.jpg?_wi=2",
imageAlt: "iPhone 12",
},
{
id: "best-3",
name: "Sony WH-CH720N",
price: "$179",
imageSrc: "http://img.b2bpic.net/free-photo/modern-wireless-earphones-with-case-displayed-round-podium-with-soft-shadows_23-2150808016.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/modern-wireless-earphones-with-case-displayed-round-podium-with-soft-shadows_23-2150808016.jpg?_wi=2",
imageAlt: "Sony WH-CH720N Headphones",
},
{
id: "best-4",
name: "Nike Air Force 1",
price: "$89",
imageSrc: "http://img.b2bpic.net/free-photo/teenagers-sitting-together_23-2148105658.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/teenagers-sitting-together_23-2148105658.jpg?_wi=2",
imageAlt: "Nike Air Force 1",
},
]}
@@ -340,7 +340,7 @@ export default function HomePage() {
buttonText="Subscribe"
termsText="By subscribing, you agree to receive promotional emails. You can unsubscribe anytime."
mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/stylish-caucasian-woman-trendy-panama-waist-neon-bag-roof-bangkok_343596-17.jpg"
imageSrc="http://img.b2bpic.net/free-photo/stylish-caucasian-woman-trendy-panama-waist-neon-bag-roof-bangkok_343596-17.jpg?_wi=2"
imageAlt="Newsletter signup"
/>
</div>

View File

@@ -56,21 +56,21 @@ export default function ProductPage() {
id: "feat-1",
name: "Apple AirPods Pro Max",
price: "$549",
imageSrc: "http://img.b2bpic.net/free-photo/modern-wireless-earphones-with-case-displayed-round-podium-with-soft-shadows_23-2150808016.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/modern-wireless-earphones-with-case-displayed-round-podium-with-soft-shadows_23-2150808016.jpg?_wi=4",
imageAlt: "Apple AirPods Pro Max",
},
{
id: "feat-2",
name: "Sony WH-1000XM5",
price: "$399",
imageSrc: "http://img.b2bpic.net/free-photo/black-person-wearing-wireless-headphones_482257-97042.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/black-person-wearing-wireless-headphones_482257-97042.jpg?_wi=2",
imageAlt: "Sony WH-1000XM5 Headphones",
},
{
id: "feat-3",
name: "Bose QuietComfort",
price: "$379",
imageSrc: "http://img.b2bpic.net/free-photo/modern-wireless-earphones-with-case-displayed-round-podium-with-soft-shadows_23-2150808016.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/modern-wireless-earphones-with-case-displayed-round-podium-with-soft-shadows_23-2150808016.jpg?_wi=5",
imageAlt: "Bose QuietComfort Headphones",
},
]}
@@ -132,7 +132,7 @@ export default function ProductPage() {
buttonText="Get Help"
termsText="We'll respond within 24 hours with product recommendations and answers to your questions."
mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/still-life-tech-device_23-2150722606.jpg"
imageSrc="http://img.b2bpic.net/free-photo/still-life-tech-device_23-2150722606.jpg?_wi=4"
imageAlt="Product inquiry support"
/>
</div>

View File

@@ -63,42 +63,42 @@ export default function ShopPage() {
id: "prod-1",
name: "Apple AirPods Pro",
price: "$149",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-tech-device_23-2150722606.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-tech-device_23-2150722606.jpg?_wi=3",
imageAlt: "Apple AirPods Pro",
},
{
id: "prod-2",
name: "iPhone 12 64GB",
price: "$349",
imageSrc: "http://img.b2bpic.net/free-photo/blond-woman-texting-her-phone_53876-20860.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blond-woman-texting-her-phone_53876-20860.jpg?_wi=3",
imageAlt: "iPhone 12 64GB",
},
{
id: "prod-3",
name: "Sony WH-CH720N",
price: "$179",
imageSrc: "http://img.b2bpic.net/free-photo/modern-wireless-earphones-with-case-displayed-round-podium-with-soft-shadows_23-2150808016.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/modern-wireless-earphones-with-case-displayed-round-podium-with-soft-shadows_23-2150808016.jpg?_wi=3",
imageAlt: "Sony WH-CH720N Headphones",
},
{
id: "prod-4",
name: "Nike Air Force 1",
price: "$89",
imageSrc: "http://img.b2bpic.net/free-photo/teenagers-sitting-together_23-2148105658.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/teenagers-sitting-together_23-2148105658.jpg?_wi=3",
imageAlt: "Nike Air Force 1",
},
{
id: "prod-5",
name: "Premium Streetwear Hoodie",
price: "$59",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-posing-white-hoodie-leggings-posing-against-white-background_89887-1063.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-posing-white-hoodie-leggings-posing-against-white-background_89887-1063.jpg?_wi=2",
imageAlt: "Premium Streetwear Hoodie",
},
{
id: "prod-6",
name: "Luxury Fragrance Collection",
price: "$79",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-skin-care-banner-design_23-2149480194.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-skin-care-banner-design_23-2149480194.jpg?_wi=2",
imageAlt: "Luxury Fragrance Collection",
},
]}