5 Commits

Author SHA1 Message Date
9137431e2f Update src/app/page.tsx 2026-03-06 02:10:33 +00:00
b90ca87a43 Update src/app/layout.tsx 2026-03-06 02:10:32 +00:00
44252af6b9 Merge version_1 into main
Merge version_1 into main
2026-03-06 02:08:20 +00:00
ffc4e45fce Merge version_1 into main
Merge version_1 into main
2026-03-06 02:07:35 +00:00
b57a62eb91 Merge version_1 into main
Merge version_1 into main
2026-03-06 02:05:58 +00:00
2 changed files with 11 additions and 64 deletions

View File

@@ -1,74 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Apollo Clinic - Multi-Specialty Medical Clinic in Srinagar", 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."};
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,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1436,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -11,6 +11,7 @@ import TeamCardTen from "@/components/sections/team/TeamCardTen";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import ContactCTA from "@/components/sections/contact/ContactCTA"; import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase"; import FooterBase from "@/components/sections/footer/FooterBase";
import { Award } from "lucide-react";
export default function HomePage() { export default function HomePage() {
const navItems = [ const navItems = [
@@ -74,7 +75,8 @@ export default function HomePage() {
<HeroOverlay <HeroOverlay
title="Trusted Multi-Specialty Clinic in Srinagar" 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." 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" 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" imageAlt="Apollo Clinic modern healthcare facility"
textPosition="bottom-left" textPosition="bottom-left"