diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 641ae53..d8ed5a4 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 94f62ee..739f2ef 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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() {
);
-}
\ No newline at end of file
+}