Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 18:36:36 +00:00
2 changed files with 11 additions and 49 deletions

View File

@@ -1,59 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } 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 roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "CITY CLINIC | Trusted Hospital in Kanavalli, Karnataka", description: "CITY CLINIC offers trusted healthcare services in Kanavalli. Book appointments, call now, or visit our clinic. 5.0★ rated local hospital. Fast testing, expert doctors, patient-first care.", keywords: "hospital Kanavalli, clinic near Kanavalli, best clinic Kanavalli, blood test Kanavalli, doctor Kanavalli, healthcare Kanavalli, medical testing Kanavalli", metadataBase: new URL("https://cityclinic-kanavalli.com"),
alternates: {
canonical: "https://cityclinic-kanavalli.com"},
openGraph: {
title: "CITY CLINIC | Trusted Healthcare in Kanavalli", description: "5.0★ rated local clinic providing reliable medical services. Book your appointment today.", url: "https://cityclinic-kanavalli.com", siteName: "CITY CLINIC", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/close-up-desk-with-computer-hospital-ward-clinic-check-patient-information-files-space-with-monitor-used-online-medical-documents-healthcare-system-emergency-room_482257-34892.jpg", alt: "CITY CLINIC - Healthcare in Kanavalli"},
],
},
twitter: {
card: "summary_large_image", title: "CITY CLINIC | Trusted Healthcare in Kanavalli", description: "Book appointments at CITY CLINIC - 5.0★ rated local hospital in Kanavalli.", images: [
"http://img.b2bpic.net/free-photo/close-up-desk-with-computer-hospital-ward-clinic-check-patient-information-files-space-with-monitor-used-online-medical-documents-healthcare-system-emergency-room_482257-34892.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "CITY CLINIC - Trusted Healthcare in Kanavalli", description: "5.0⭐ Rated Local Clinic Providing Reliable Medical Services for Your Family. Open 9:30 AM • Jhandekatti Road, Kanavalli"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -9,7 +9,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import { Star, Stethoscope, Heart } from 'lucide-react';
import { Star, Stethoscope, Heart, Award, Clock, Users } from 'lucide-react';
export default function LandingPage() {
return (
@@ -89,7 +89,9 @@ export default function LandingPage() {
<div id="about" data-section="about">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "Serving Kanavalli Community with Friendly, Efficient & Patient-First Care" }
{ type: "text", content: "Serving Kanavalli Community with" },
{ type: "image", src: "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fbbf24' stroke='%23d97706' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'%3E%3C/path%3E%3C/svg%3E", alt: "verified" },
{ type: "text", content: "Friendly, Efficient & Patient-First Care" }
]}
buttons={[
{ text: "Learn More", href: "#services" }