From 80354e149eac1a57ddef53631ac97f4254cdeebf Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:52:08 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1433 -------------------------------------------- 1 file changed, 1433 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a47fd4e..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1433 +0,0 @@ -import type { Metadata } from "next"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Royal Care Medical Center - 24/7 Emergency Medical Services in Qalqilyah", - description: "24/7 emergency medical care, lab tests, and chronic disease follow-up in Qalqilyah. Expert doctors, affordable rates. Call now for immediate assistance.", - keywords: "24/7 medical center, emergency care, medical services, Qalqilyah, laboratory tests, chronic disease, healthcare", - metadataBase: new URL("https://royalcaremedical.local"), - alternates: { - canonical: "https://royalcaremedical.local", - }, - openGraph: { - title: "Royal Care Medical Center - Your 24/7 Emergency Medical Provider", - description: "Professional emergency medical care, laboratory services, and chronic disease management. Always open for your family.", - url: "https://royalcaremedical.local", - siteName: "Royal Care Medical Center", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/empty-reception-counter-waiting-room-attend-medical-appointment-with-general-practitioner-healthcare-facility-hospital-lobby-seats-private-clinic-checkup-examination_482257-50493.jpg", - alt: "Royal Care Medical Center - 24/7 Emergency Medical Services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Royal Care Medical Center - 24/7 Medical Services", - description: "Emergency medical care available 24/7. Call now for professional healthcare.", - images: ["http://img.b2bpic.net/free-photo/empty-reception-counter-waiting-room-attend-medical-appointment-with-general-practitioner-healthcare-facility-hospital-lobby-seats-private-clinic-checkup-examination_482257-50493.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -