Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-03-12 04:06:25 +00:00
3 changed files with 44 additions and 10 deletions

View File

@@ -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"

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +73,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -250,7 +250,7 @@ export default function HomePage() {
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=1"
imageAlt="Wholesale community collaboration"
mediaAnimation="slide-up"
mediaPosition="right"