diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 47bcd57..3074b89 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -51,7 +51,7 @@ export default function AboutPage() { tag="Our Story" tagIcon={Heart} tagAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/two-beautiful-women-with-bags-looking-each-other-with-smile-while-walking-clothing-store_146671-15849.jpg" + imageSrc="http://img.b2bpic.net/free-photo/two-beautiful-women-with-bags-looking-each-other-with-smile-while-walking-clothing-store_146671-15849.jpg?_wi=2" imageAlt="ShopHub warehouse and retail operations" buttons={[ { text: "Learn More About Us", href: "/about" }, diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 836aaaf..215008b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -61,7 +61,7 @@ export default function ContactPage() { tagAnimation="slide-up" textboxLayout="default" useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/support-agent-reviewing-feedback_482257-124716.jpg" + imageSrc="http://img.b2bpic.net/free-photo/support-agent-reviewing-feedback_482257-124716.jpg?_wi=2" imageAlt="Customer support team" mediaPosition="right" mediaAnimation="slide-up" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..da5c833 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,57 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Source_Sans_3 } 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "ShopHub - Everything You Need, One Click Away", + description: "Shop electronics, fashion, beauty, home essentials & accessories. Quality products, fast shipping, and trusted by millions. Browse exclusive deals today!", + keywords: "online shopping, electronics, fashion, beauty, home essentials, accessories, e-commerce, deals", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "ShopHub - Your Trusted Shopping Destination", + description: "Discover quality products across five categories. Exclusive deals, fast shipping, and exceptional customer service.", + url: "https://shophub.com", + siteName: "ShopHub", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/two-indians-mans-customer-buyer-mobile-phone-making-selfie-by-monopod-stick-south-asian-peoples-technologies-concept-cellphone-shop_627829-1266.jpg", + alt: "ShopHub Featured Products", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ShopHub - Everything You Need", + description: "Shop quality products across electronics, fashion, beauty, home essentials & accessories.", + images: ["http://img.b2bpic.net/free-photo/two-indians-mans-customer-buyer-mobile-phone-making-selfie-by-monopod-stick-south-asian-peoples-technologies-concept-cellphone-shop_627829-1266.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +60,9 @@ export default function RootLayout({ return ( - + {children}