diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5bdacf9..58ab941 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1438 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Bloom Clinic - Advanced Aesthetic Treatments in Petaling Jaya", - description: "Medical-grade aesthetic treatments by certified doctors in Petaling Jaya. HIFU, Pico Laser, skin rejuvenation, acne & pigmentation treatments. Book your free consultation.", - keywords: "aesthetic clinic Petaling Jaya, skin treatment PJ, HIFU lifting, pico laser, facial treatment, acne treatment, pigmentation removal, dermatology", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Bloom Clinic - Advanced Aesthetic Treatments", - description: "Professional aesthetic treatments in Petaling Jaya. Certified doctors, 4.9★ rating, free consultation.", - url: "https://bloomclinic.my", - siteName: "Bloom Clinic", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/girl-having-coffee-bathroom_23-2148147484.jpg", - alt: "Bloom Clinic Professional Aesthetic Treatment Center", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Bloom Clinic - Aesthetic Treatments Petaling Jaya", - description: "Medical-grade skin treatments. HIFU, Pico Laser, rejuvenation. Trusted by 5000+ patients. Book now.", - images: ["http://img.b2bpic.net/free-photo/girl-having-coffee-bathroom_23-2148147484.jpg"], - }, -}; + title: "Bloom Clinic - Medical Aesthetic Treatments in Petaling Jaya", description: "Advanced skin and aesthetic treatments from certified medical professionals. HIFU, Pico Laser, and more in our comfortable PJ clinic."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -