Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c6e782e66a | |||
| 4bcf3a8c3f | |||
| 47c66d7728 |
@@ -1,11 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import "./globals.css";
|
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 = {
|
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({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -14,7 +20,9 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={inter.className}>{children}
|
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -24,7 +24,6 @@ import {
|
|||||||
Eye,
|
Eye,
|
||||||
Linkedin,
|
Linkedin,
|
||||||
Globe,
|
Globe,
|
||||||
TrendingUp,
|
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -178,6 +177,7 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
buttons={[{ text: "Book Your First Visit", href: "#contact" }]}
|
||||||
buttonAnimation="none"
|
buttonAnimation="none"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -212,35 +212,6 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="reviews" data-section="reviews">
|
<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
|
<TestimonialCardFive
|
||||||
tag="Patient Reviews"
|
tag="Patient Reviews"
|
||||||
tagIcon={Star}
|
tagIcon={Star}
|
||||||
@@ -326,7 +297,7 @@ export default function LandingPage() {
|
|||||||
title: "Quick Links", items: [
|
title: "Quick Links", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "#about" },
|
||||||
{ label: "Our Team", href: "#doctors" },
|
{ label: "Our Team", href: "#doctors" },
|
||||||
{ label: "Patient Reviews", href: "#testimonials" },
|
{ label: "Patient Reviews", href: "#reviews" },
|
||||||
{ label: "Book Appointment", href: "#contact" },
|
{ label: "Book Appointment", href: "#contact" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user