Merge version_3 into main #6

Merged
bender merged 2 commits from version_3 into main 2026-03-05 04:59:46 +00:00
2 changed files with 14 additions and 35 deletions

View File

@@ -1,11 +1,17 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
const geistSans = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "CarePlus Clinic - Compassionate Healthcare", description: "Advanced treatment with a human touch. Trusted by families for safe, comfortable, and modern healthcare."};
title: "CarePlus Clinic", description: "Compassionate Care You Can Trust - Advanced treatment with a human touch"};
export default function RootLayout({
children,
@@ -14,7 +20,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -24,7 +24,6 @@ import {
Eye,
Linkedin,
Globe,
TrendingUp,
} from "lucide-react";
export default function LandingPage() {
@@ -178,6 +177,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Book Your First Visit", href: "#contact" }]}
buttonAnimation="none"
/>
</div>
@@ -212,35 +212,6 @@ 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}
@@ -326,7 +297,7 @@ export default function LandingPage() {
title: "Quick Links", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Team", href: "#doctors" },
{ label: "Patient Reviews", href: "#testimonials" },
{ label: "Patient Reviews", href: "#reviews" },
{ label: "Book Appointment", href: "#contact" },
],
},