diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ac43311..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +0,0 @@ -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"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", 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"}, - ], - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -