diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5ca1a0b..d58403a 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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" /> diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 74ccde3..869c1a7 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -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" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..c0d763e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}