9 Commits

Author SHA1 Message Date
6d9dad3f8d Merge version_3 into main
Merge version_3 into main
2026-03-03 23:03:34 +00:00
d281ed6fea Update src/app/page.tsx 2026-03-03 23:03:30 +00:00
9c2bd0a3fb Update src/app/layout.tsx 2026-03-03 23:03:30 +00:00
1d8ffc438a Merge version_2 into main
Merge version_2 into main
2026-03-03 23:01:02 +00:00
9092716a42 Update src/app/page.tsx 2026-03-03 23:00:57 +00:00
c7627a442a Update src/app/layout.tsx 2026-03-03 23:00:56 +00:00
9f3ea24ded Merge version_1 into main
Merge version_1 into main
2026-03-03 22:59:59 +00:00
09b15ff655 Merge version_1 into main
Merge version_1 into main
2026-03-03 22:58:53 +00:00
9ad66b2e48 Merge version_1 into main
Merge version_1 into main
2026-03-03 22:57:20 +00:00
2 changed files with 17 additions and 38 deletions

View File

@@ -1,48 +1,24 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Raleway } from "next/font/google"; import { Poppins } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const raleway = Raleway({ const poppins = Poppins({
variable: "--font-raleway", variable: "--font-poppins", subsets: ["latin"],
subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Modern Multidisciplinary Medical Center | Expert Healthcare", title: "Medical Center", description: "Comprehensive healthcare excellence with state-of-the-art facilities"};
description: "State-of-the-art medical center offering comprehensive healthcare across 16+ specialties. Expert physicians, advanced facilities, and patient-centered care.",
keywords: "medical center, healthcare, doctors, hospital, specialties, cardiology, orthopedic, neurology, oncology",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Modern Multidisciplinary Medical Center",
description: "Comprehensive healthcare excellence with expert physicians and state-of-the-art facilities.",
type: "website",
siteName: "Medical Center",
},
twitter: {
card: "summary_large_image",
title: "Modern Multidisciplinary Medical Center",
description: "Expert healthcare across 16+ medical specialties",
},
};
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={poppins.variable}>
<body {children}
className={`${raleway.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1411,7 +1387,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -136,6 +136,10 @@ export default function HomePage() {
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
buttons={[
{ text: "Contact Our Specialists", href: "/contact" }
]}
buttonAnimation="slide-up"
/> />
</div> </div>