3 Commits

Author SHA1 Message Date
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
2 changed files with 13 additions and 8 deletions

View File

@@ -1,11 +1,14 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Inter } from "next/font/google"; import { Poppins } from "next/font/google";
import "./globals.css"; import "./globals.css";
const inter = Inter({ subsets: ["latin"] }); const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Medical Center", description: "Comprehensive healthcare excellence"}; title: "Medical Center", description: "Comprehensive healthcare excellence with state-of-the-art facilities"};
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -14,7 +17,9 @@ export default function RootLayout({
}) { }) {
return ( return (
<html lang="en"> <html lang="en">
<body className={inter.className}>{children} <body className={poppins.variable}>
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__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>
@@ -196,10 +200,6 @@ export default function HomePage() {
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
buttons={[
{ text: "Start Your Journey with Us", href: "/contact" }
]}
buttonAnimation="slide-up"
/> />
</div> </div>