Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 01a740bdbe | |||
| 130eaa8239 | |||
| 185f08c7f1 | |||
| 24cd904e37 | |||
| 8f5114261e | |||
| 07805a147e | |||
| 7f1049a8c9 |
@@ -1,51 +1,28 @@
|
||||
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 { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
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: {
|
||||
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"},
|
||||
],
|
||||
},
|
||||
};
|
||||
title: "Webild - Premium Medical Apparel & Custom Tailoring", description: "High-quality medical scrubs and custom tailoring for healthcare professionals"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -63,7 +63,7 @@ export default function LandingPage() {
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
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={[
|
||||
{ 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" },
|
||||
@@ -155,7 +155,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
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."
|
||||
buttons={[
|
||||
{ text: "Shop Collection", href: "products" },
|
||||
|
||||
Reference in New Issue
Block a user