Merge version_2 into main #5
@@ -1,57 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Montserrat } 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 montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "CarePlus Multispeciality Clinic | Premium Healthcare", description: "Experience compassionate, modern medical care at CarePlus. Expert doctors, same-day appointments, transparent pricing. Book your consultation today.", keywords: "medical clinic, multispeciality clinic, healthcare, doctors, dental care, pediatrics, emergency care, trusted healthcare", metadataBase: new URL("https://careplusclinic.com"),
|
||||
alternates: {
|
||||
canonical: "https://careplusclinic.com"},
|
||||
openGraph: {
|
||||
title: "CarePlus Multispeciality Clinic | Premium Healthcare", description: "Experience compassionate, modern medical care. Expert doctors, advanced equipment, patient-first approach.", url: "https://careplusclinic.com", siteName: "CarePlus Clinic", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/african-american-assistant-patients-engage-medical-checkup_482257-122746.jpg", alt: "CarePlus Multispeciality Clinic"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "CarePlus Multispeciality Clinic | Premium Healthcare", description: "Compassionate care you can trust. Modern medical facility with expert doctors.", images: ["http://img.b2bpic.net/free-photo/african-american-assistant-patients-engage-medical-checkup_482257-122746.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "CarePlus Clinic - Compassionate Healthcare", description: "Advanced treatment with a human touch. Trusted by families for safe, comfortable, and modern healthcare."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -24,6 +24,7 @@ import {
|
||||
Eye,
|
||||
Linkedin,
|
||||
Globe,
|
||||
TrendingUp,
|
||||
} from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -211,6 +212,35 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="reviews" data-section="reviews">
|
||||
<MetricCardOne
|
||||
tag="Patient Trust"
|
||||
tagIcon={TrendingUp}
|
||||
tagAnimation="none"
|
||||
title="Trusted by Over 5,000+ Families"
|
||||
description="Join thousands of satisfied patients who have experienced compassionate care at CarePlus."
|
||||
metrics={[
|
||||
{
|
||||
id: "families", value: "5000", title: "Families", description: "Trusted us for their healthcare needs", icon: Users,
|
||||
},
|
||||
{
|
||||
id: "satisfaction", value: "98%", title: "Satisfaction", description: "Patient satisfaction rate", icon: Star,
|
||||
},
|
||||
{
|
||||
id: "experience", value: "20+", title: "Years", description: "Combined medical expertise", icon: Award,
|
||||
},
|
||||
{
|
||||
id: "reviews", value: "500+", title: "Reviews", description: "Positive patient testimonials", icon: Heart,
|
||||
},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttonAnimation="none"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
tag="Patient Reviews"
|
||||
tagIcon={Star}
|
||||
@@ -296,7 +326,7 @@ export default function LandingPage() {
|
||||
title: "Quick Links", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Our Team", href: "#doctors" },
|
||||
{ label: "Patient Reviews", href: "#reviews" },
|
||||
{ label: "Patient Reviews", href: "#testimonials" },
|
||||
{ label: "Book Appointment", href: "#contact" },
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user