8 Commits

Author SHA1 Message Date
b03d3bba9d Update src/app/page.tsx 2026-03-05 05:54:56 +00:00
4534cf5065 Update src/app/layout.tsx 2026-03-05 05:54:56 +00:00
591ba056c7 Merge version_2 into main
Merge version_2 into main
2026-03-05 05:41:59 +00:00
bad02d27ac Update src/app/page.tsx 2026-03-05 05:41:55 +00:00
e7a5cc1471 Update src/app/layout.tsx 2026-03-05 05:41:55 +00:00
4778a11740 Merge version_1 into main
Merge version_1 into main
2026-03-05 05:38:21 +00:00
c0e9cfcb4b Merge version_1 into main
Merge version_1 into main
2026-03-05 05:37:36 +00:00
7f38dd1653 Merge version_1 into main
Merge version_1 into main
2026-03-05 05:36:25 +00:00
2 changed files with 11 additions and 54 deletions

View File

@@ -1,63 +1,21 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Rose Clinic 24/7 Appointment Booking - Ultrasound & OBGY Services",
description: "Book appointments online at Rose Clinic & Ultrasound Centre in Delhi. 24/7 OBGY services by Dr. Nisha Singh. Real-time slot availability, reminders, and comprehensive patient management system.",
keywords: "clinic appointment booking, ultrasound center Delhi, OBGY services, Dr. Nisha Singh, online appointment system, healthcare management",
openGraph: {
title: "Rose Clinic - 24/7 Appointment Booking System",
description: "Seamless online appointment scheduling for Rose Clinic & Ultrasound Centre. Book with Dr. Nisha Singh. Real-time availability and instant confirmations.",
siteName: "Rose Clinic",
type: "website",
images: [{
url: "http://img.b2bpic.net/free-photo/medical-treatment-calendar-with-stethoscope-pills_23-2148438970.jpg",
alt: "Rose Clinic Appointment Booking System"
}]
},
twitter: {
card: "summary_large_image",
title: "Rose Clinic - Book Your Appointment Online",
description: "24/7 OBGY and ultrasound services by Dr. Nisha Singh. Easy online appointment booking with instant confirmations.",
images: ["http://img.b2bpic.net/free-photo/medical-treatment-calendar-with-stethoscope-pills_23-2148438970.jpg"]
}
title: "Rose Clinic & Ultrasound Centre - 24/7 Online Appointment Booking", description: "Book appointments online at Rose Clinic & Ultrasound Centre. Real-time availability, smart reminders, and secure scheduling for Dr. Nisha Singh's premier healthcare facility."
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1425,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -51,7 +51,7 @@ const HomePage = () => {
tagAnimation="slide-up"
background={{ variant: "animated-grid" }}
buttons={[
{ text: "Book Appointment", href: "/appointments" },
{ text: "Book Your Appointment Now", href: "/appointments" },
{ text: "Learn More", href: "/about" }
]}
buttonAnimation="slide-up"
@@ -64,7 +64,7 @@ const HomePage = () => {
<FeatureCardTwentySix
title="Powerful Features for Patients"
description="Everything you need for hassle-free healthcare appointments and management"
tag="Patient Portal"
tag="Trusted by 5000+ Patients"
tagIcon={CheckCircle}
tagAnimation="slide-up"
features={[
@@ -233,4 +233,4 @@ const HomePage = () => {
);
};
export default HomePage;
export default HomePage;