diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 17aacef..ee0ffdc 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -43,7 +43,7 @@ export default function ContactPage() { description="Subscribe to get exclusive product previews, pricing updates, and wholesale insights delivered to your inbox." background={{ variant: "sparkles-gradient" }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/businessman-pointing-laptop_23-2147626441.jpg" + imageSrc="http://img.b2bpic.net/free-photo/businessman-pointing-laptop_23-2147626441.jpg?_wi=2" imageAlt="Wholesale community collaboration" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..646e223 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "KIT Wholesale | Premium Apparel at Bulk Prices", + description: "Source quality wholesale clothing directly from manufacturers. Browse 2000+ products, get competitive bulk pricing, and simplify your wholesale ordering with real-time inventory tracking.", + keywords: "wholesale clothing, bulk apparel, wholesale supplier, fashion wholesale, bulk orders", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "KIT Wholesale | Premium Apparel at Bulk Prices", + description: "Wholesale clothing supplier connecting retail buyers with premium apparel. Transparent pricing, fast ordering, quality products.", + type: "website", + siteName: "KIT Wholesale", + images: [ + { + url: "http://img.b2bpic.net/free-photo/close-up-clothing-rack_53876-138107.jpg", + alt: "Premium wholesale apparel collection", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "KIT Wholesale | Premium Apparel at Bulk Prices", + description: "Source quality wholesale clothing directly from manufacturers", + images: ["http://img.b2bpic.net/free-photo/close-up-clothing-rack_53876-138107.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}