10 Commits

Author SHA1 Message Date
c9e37b2d5e Merge version_3 into main
Merge version_3 into main
2026-03-04 04:54:29 +00:00
9986c11393 Update src/app/page.tsx 2026-03-04 04:54:25 +00:00
6d8dbd45f2 Update src/app/layout.tsx 2026-03-04 04:54:24 +00:00
6202b615ca Merge version_2 into main
Merge version_2 into main
2026-03-04 04:52:13 +00:00
18d7ced050 Update src/app/page.tsx 2026-03-04 04:52:09 +00:00
80354e149e Update src/app/layout.tsx 2026-03-04 04:52:08 +00:00
076784bc6d Merge version_1 into main
Merge version_1 into main
2026-03-04 04:50:28 +00:00
d3a3944829 Merge version_1 into main
Merge version_1 into main
2026-03-04 04:49:33 +00:00
615dca1433 Merge version_1 into main
Merge version_1 into main
2026-03-04 04:47:53 +00:00
7d98caf8c6 Merge version_1 into main
Merge version_1 into main
2026-03-04 04:46:08 +00:00
2 changed files with 12 additions and 58 deletions

View File

@@ -1,65 +1,20 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Inter } 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"],
});
const inter = Inter({ 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,
},
};
title: "Royal Care Medical Center", description: "24/7 Medical & Laboratory Services in Qalqilyah"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1427,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -50,7 +50,7 @@ export default function HomePage() {
description="Emergency medical care, lab tests, and chronic disease follow-up available around the clock. Located near Al-Nakheel Fuel Station. Call now for immediate assistance."
background={{ variant: "radial-gradient" }}
buttons={[
{ text: "Call Now", href: "tel:+970-9-XXXXXXXX" },
{ text: "Call Emergency Line Now", href: "tel:+970-9-XXXXXXXX" },
{ text: "Book Appointment", href: "#contact" }
]}
buttonAnimation="slide-up"
@@ -133,7 +133,7 @@ export default function HomePage() {
textboxLayout="default"
useInvertedBackground={true}
metrics={[
{ id: "1", icon: Clock, title: "24/7 Coverage", value: "Always Open" },
{ id: "1", icon: Clock, title: "24/7 Coverage", value: "24/7 Non-Stop" },
{ id: "2", icon: Users, title: "Trusted By", value: "3,500+" },
{ id: "3", icon: Star, title: "Google Rating", value: "4.5★" },
{ id: "4", icon: MapPin, title: "Local Service", value: "Qalqilyah" }
@@ -156,7 +156,7 @@ export default function HomePage() {
bulletPoints={[
{ icon: CheckCircle, title: "Expert Medical Staff", description: "Experienced doctors and nurses providing professional emergency and routine care" },
{ icon: Shield, title: "Patient Safety First", description: "Strict hygiene protocols and modern medical equipment ensuring safe treatment" },
{ icon: Clock, title: "Always Available", description: "24/7 emergency response for urgent medical needs any time of day or night" },
{ icon: Clock, title: "24/7 Coverage", description: "24/7 emergency response for urgent medical needs any time of day or night" },
{ icon: MapPin, title: "Easy to Reach", description: "Conveniently located near Al-Nakheel Fuel Station for quick access" }
]}
imageSrc="http://img.b2bpic.net/free-photo/team-doctors-meeting_107420-84791.jpg"
@@ -242,4 +242,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}