Update src/app/layout.tsx

This commit is contained in:
2026-05-28 16:41:27 +00:00
parent 88048eea4f
commit 2f793fe4f4

View File

@@ -8,43 +8,37 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Archivo } from "next/font/google";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: 'NovaCare Clinic - Premium & Modern Healthcare',
description: 'Experience the future of health at NovaCare Clinic. Offering advanced medical services, expert doctors, and seamless online booking for a premium healthcare journey.',
keywords: ["clinic near me, best clinic, healthcare services, online doctor booking, modern clinic, futuristic healthcare, premium medical, NovaCare Clinic, general medicine, dental care, cardiology, orthopedics, pediatrics, dermatology"],
openGraph: {
"title": "NovaCare Clinic - Premium & Modern Healthcare",
"description": "Experience the future of health at NovaCare Clinic. Offering advanced medical services, expert doctors, and seamless online booking for a premium healthcare journey.",
"url": "https://www.novacareclinic.com",
"siteName": "NovaCare Clinic",
"images": [
{
"url": "http://img.b2bpic.net/free-photo/doctors-nurses-discussing-digital-tablet_107420-84814.jpg",
"alt": "NovaCare Clinic Medical Team"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "NovaCare Clinic - Premium & Modern Healthcare",
"description": "Experience the future of health at NovaCare Clinic. Offering advanced medical services, expert doctors, and seamless online booking for a premium healthcare journey.",
"images": [
"http://img.b2bpic.net/free-photo/doctors-nurses-discussing-digital-tablet_107420-84814.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "NovaCare Clinic - Premium & Modern Healthcare", description: "Experience the future of health at NovaCare Clinic. Offering advanced medical services, expert doctors, and seamless online booking for a premium healthcare journey.", keywords: ["clinic near me", "best clinic", "healthcare services", "online doctor booking", "modern clinic", "futuristic healthcare", "premium medical", "NovaCare Clinic", "general medicine", "dental care", "cardiology", "orthopedics", "pediatrics", "dermatology"],
openGraph: {
title: "NovaCare Clinic - Premium & Modern Healthcare", description: "Experience the future of health at NovaCare Clinic. Offering advanced medical services, expert doctors, and seamless online booking for a premium healthcare journey.", url: "https://www.novacareclinic.com", siteName: "NovaCare Clinic", images: [
{
url: "http://img.b2bpic.net/free-photo/doctors-nurses-discussing-digital-tablet_107420-84814.jpg", alt: "NovaCare Clinic Medical Team"},
],
type: "website"},
twitter: {
card: "summary_large_image", title: "NovaCare Clinic - Premium & Modern Healthcare", description: "Experience the future of health at NovaCare Clinic. Offering advanced medical services, expert doctors, and seamless online booking for a premium healthcare journey.", images: [
"http://img.b2bpic.net/free-photo/doctors-nurses-discussing-digital-tablet_107420-84814.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -53,7 +47,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script