7 Commits

Author SHA1 Message Date
01a740bdbe Merge version_3 into main
Merge version_3 into main
2026-03-06 11:06:41 +00:00
130eaa8239 Update src/app/page.tsx 2026-03-06 11:06:37 +00:00
185f08c7f1 Update src/app/layout.tsx 2026-03-06 11:06:37 +00:00
24cd904e37 Merge version_2 into main
Merge version_2 into main
2026-03-06 11:05:06 +00:00
8f5114261e Update src/app/page.tsx 2026-03-06 11:05:02 +00:00
07805a147e Update src/app/layout.tsx 2026-03-06 11:05:01 +00:00
7f1049a8c9 Merge version_1 into main
Merge version_1 into main
2026-03-06 11:02:47 +00:00
2 changed files with 14 additions and 38 deletions

View File

@@ -1,50 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Premium Medical Apparel & Custom Tailoring | Webild", description: "Discover high-quality medical scrubs with custom tailoring. Antimicrobial, breathable, and professionally designed for healthcare professionals.", keywords: "medical scrubs, healthcare uniforms, custom tailoring, professional apparel, antimicrobial fabric", robots: { title: "Webild - Premium Medical Apparel & Custom Tailoring", description: "High-quality medical scrubs and custom tailoring for healthcare professionals"};
index: true,
follow: true,
},
openGraph: {
title: "Premium Medical Apparel & Custom Tailoring | Webild", description: "Elevate your professional wardrobe with Webild's high-quality medical scrubs and bespoke tailoring solutions.", type: "website", siteName: "Webild", images: [
{
url: "http://img.b2bpic.net/free-photo/covid-19-coronavirus-disease-healthcare-workers-concept-close-up-serious-looking-concerned-asian-female-doctor-personal-protective-equipment-show-stop-gesture-prohibit-enter-dangerous-zone_1258-84776.jpg", alt: "premium medical scrubs professional"},
],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1413,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -63,7 +63,7 @@ export default function LandingPage() {
<div id="products" data-section="products"> <div id="products" data-section="products">
<ProductCardOne <ProductCardOne
title="Our Premium Collection" title="Our Premium Collection"
description="Explore our curated selection of high-quality medical scrubs featuring antimicrobial fabric, ergonomic designs, and modern styling for healthcare professionals." description="Healthcare professionals demand quality and comfort. Our scrubs deliver both—plus antimicrobial protection and a tailored fit that lasts all shift."
products={[ products={[
{ id: "1", name: "Essential Navy Scrubs", price: "$89.99", imageSrc: "http://img.b2bpic.net/free-photo/nurse-preparing-consult_23-2149309955.jpg", imageAlt: "Navy blue premium medical scrubs" }, { id: "1", name: "Essential Navy Scrubs", price: "$89.99", imageSrc: "http://img.b2bpic.net/free-photo/nurse-preparing-consult_23-2149309955.jpg", imageAlt: "Navy blue premium medical scrubs" },
{ id: "2", name: "Sage Green Professional Set", price: "$89.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-female-doctor-confused-mask-yellow-space_179666-13200.jpg", imageAlt: "Sage green healthcare uniform" }, { id: "2", name: "Sage Green Professional Set", price: "$89.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-female-doctor-confused-mask-yellow-space_179666-13200.jpg", imageAlt: "Sage green healthcare uniform" },
@@ -155,7 +155,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCTA <ContactCTA
tag="Ready to Transform Your Wardrobe?" tag="Ready to Transform Your Wardrobe?"
title="Join Healthcare Professionals Who Demand Excellence" title="Get Your Perfect Fit in 48 Hours"
description="Discover why thousands of doctors, nurses, and clinical staff trust Webild for their professional medical apparel needs. Experience the perfect blend of ready-to-wear convenience and custom precision tailoring." description="Discover why thousands of doctors, nurses, and clinical staff trust Webild for their professional medical apparel needs. Experience the perfect blend of ready-to-wear convenience and custom precision tailoring."
buttons={[ buttons={[
{ text: "Shop Collection", href: "products" }, { text: "Shop Collection", href: "products" },