Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 02:10:37 +00:00
2 changed files with 11 additions and 64 deletions

View File

@@ -1,74 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } 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 manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Apollo Clinic - Multi-Specialty Medical Clinic in Srinagar",
description: "Trusted multi-specialty clinic in Srinagar offering expert doctors, modern diagnostics, and compassionate healthcare. 4.4★ rated. Book appointments online.",
keywords: "clinic in Srinagar, best clinic Srinagar, general physician, pediatrician, cardiology, diagnostic lab, physiotherapy, medical services",
metadataBase: new URL("https://apolloclinicsrinagar.com"),
alternates: {
canonical: "https://apolloclinicsrinagar.com",
},
openGraph: {
title: "Apollo Clinic - Multi-Specialty Medical Care in Srinagar",
description: "Expert healthcare with modern diagnostics. Trusted by 78+ verified patients. Book your appointment today.",
url: "https://apolloclinicsrinagar.com",
siteName: "Apollo Clinic",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/indian-healthcare-professional-sharing-medical-expertise-with-patient-office_482257-124044.jpg",
alt: "Apollo Clinic Modern Healthcare Facility",
},
],
},
twitter: {
card: "summary_large_image",
title: "Apollo Clinic - Srinagar's Trusted Medical Provider",
description: "Multi-specialty healthcare with expert doctors and AI-powered diagnostics.",
images: ["http://img.b2bpic.net/free-photo/indian-healthcare-professional-sharing-medical-expertise-with-patient-office_482257-124044.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Apollo Clinic - Trusted Multi-Specialty Healthcare in Srinagar", description: "Expert doctors, modern diagnostics, and compassionate care for your entire family. Professional healthcare services with AI-powered diagnostic labs."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -11,6 +11,7 @@ import TeamCardTen from "@/components/sections/team/TeamCardTen";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Award } from "lucide-react";
export default function HomePage() {
const navItems = [
@@ -74,7 +75,8 @@ export default function HomePage() {
<HeroOverlay
title="Trusted Multi-Specialty Clinic in Srinagar"
description="Expert doctors, modern diagnostics, and compassionate care for your entire family. Professional healthcare services with AI-powered diagnostic labs."
tag="Award-Winning Healthcare"
tag="Certified & Award-Winning"
tagIcon={Award}
imageSrc="http://img.b2bpic.net/free-photo/indian-healthcare-professional-sharing-medical-expertise-with-patient-office_482257-124044.jpg"
imageAlt="Apollo Clinic modern healthcare facility"
textPosition="bottom-left"
@@ -204,4 +206,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}