diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index a2a24ec..787969d 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -75,25 +75,25 @@ export default function AboutPage() { { id: "1", name: "Sarah Johnson", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-businesswoman-window-1_1262-1490.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-businesswoman-window-1_1262-1490.jpg?_wi=2", imageAlt: "Sarah Johnson", }, { id: "2", name: "Michael Chen", - imageSrc: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5370.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5370.jpg?_wi=2", imageAlt: "Michael Chen", }, { id: "3", name: "Emily Rodriguez", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-businesswoman_329181-11388.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-businesswoman_329181-11388.jpg?_wi=2", imageAlt: "Emily Rodriguez", }, { id: "4", name: "David Kim", - imageSrc: "http://img.b2bpic.net/free-photo/proud-entrepreneur-with-employees-background_1098-3585.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/proud-entrepreneur-with-employees-background_1098-3585.jpg?_wi=2", imageAlt: "David Kim", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6713378..5be98f0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,18 +6,50 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "ShopHub - Premium Products Online | Best Deals & Quality", + description: "Shop premium products with ShopHub. Discover curated collections, competitive prices, and exceptional customer service. 50K+ happy customers trust us.", + keywords: "e-commerce, online shopping, premium products, quality goods, buy online, deals", + metadataBase: new URL("https://shophub.com"), + alternates: { + canonical: "https://shophub.com", + }, + openGraph: { + title: "ShopHub - Premium Products Online", + description: "Discover curated collections of high-quality products delivered to your door", + url: "https://shophub.com", + siteName: "ShopHub", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/people-line-waiting-social-distance-stripe_23-2148863827.jpg", + alt: "ShopHub - Online Shopping", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ShopHub - Premium Products Online", + description: "Shop premium products with competitive prices and exceptional service", + images: ["http://img.b2bpic.net/free-photo/people-line-waiting-social-distance-stripe_23-2148863827.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -26,7 +58,9 @@ export default function RootLayout({ return ( - + {children}