Update src/app/layout.tsx

This commit is contained in:
2026-03-05 03:05:23 +00:00
parent f5cb2f1fc0
commit 276130a539

View File

@@ -1,32 +1,29 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import { Raleway } 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 dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Smile Dental | Professional Dental Care in Karachi & Lahore", description: "Expert dental clinic offering comprehensive services including cleanings, cosmetic dentistry, and orthodontics. Book your appointment today.", keywords: "dental clinic, dentist, teeth cleaning, cosmetic dentistry, orthodontics, Karachi, Lahore", metadataBase: new URL("https://www.smiledental.pk"),
title: "PakistanDental | Professional Dental Care in Pakistan", description: "Expert dental clinic offering comprehensive services including cleanings, cosmetic dentistry, and orthodontics. Book your appointment today.", keywords: "dental clinic, dentist, teeth cleaning, cosmetic dentistry, orthodontics, Pakistan", metadataBase: new URL("https://www.pakistandental.pk"),
alternates: {
canonical: "https://www.smiledental.pk"},
canonical: "https://www.pakistandental.pk"
},
openGraph: {
title: "Smile Dental | Professional Dental Care", description: "Transform your smile with our expert dental team. Modern techniques, compassionate care.", url: "https://www.smiledental.pk", siteName: "Smile Dental", type: "website"},
title: "PakistanDental | Professional Dental Care", description: "Transform your smile with our expert dental team. Modern techniques, compassionate care.", url: "https://www.pakistandental.pk", siteName: "PakistanDental", type: "website"
},
twitter: {
card: "summary_large_image", title: "Smile Dental | Professional Dental Care", description: "Expert dental clinic in Karachi and Lahore"},
card: "summary_large_image", title: "PakistanDental | Professional Dental Care", description: "Expert dental clinic in Pakistan"
},
robots: {
index: true,
follow: true,
@@ -42,7 +39,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}