Files
c45b384e-e685-4c3a-9400-0d7…/src/app/layout.tsx
2026-06-11 04:14:39 +00:00

100 lines
4.0 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: 'Family Dental Center Sharjah | Best Dental Clinic in Sharjah UAE',
description: 'Your trusted family dental clinic in Sharjah, UAE, offering comprehensive, compassionate dental care for all ages with expert specialists and state-of-the-art equipment. Providing the best dental services for a healthy, radiant smile.',
alternates: {
canonical: '/',
},
openGraph: {
title: 'Family Dental Center Sharjah | Best Dental Clinic in Sharjah UAE',
description: 'Your trusted family dental clinic in Sharjah, UAE, offering comprehensive, compassionate dental care for all ages with expert specialists and state-of-the-art equipment. Providing the best dental services for a healthy, radiant smile.',
url: new URL('https://yourwebsite.com'), // Placeholder
siteName: 'Family Dental Center Sharjah',
images: [
{
url: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/hero/hero1.avif',
width: 1200,
height: 630,
alt: 'Family Dental Center Sharjah Clinic',
},
],
locale: 'en_US',
type: 'website',
},
twitter: {
card: 'summary_large_image',
title: 'Family Dental Center Sharjah | Best Dental Clinic in Sharjah UAE',
description: 'Your trusted family dental clinic in Sharjah, UAE, offering comprehensive, compassionate dental care for all ages with expert specialists and state-of-the-art equipment. Providing the best dental services for a healthy, radiant smile.',
images: ['https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/hero/hero1.avif'],
},
robots: {
index: true,
follow: true,
googleBot: {
index: true,
follow: true,
'max-video-preview': -1,
'max-image-preview': 'large',
'max-snippet': -1,
},
},
jsonLd: {
"@context": "https://schema.org", "@type": "DentalClinic", "name": "Family Dental Center Sharjah", "image": "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/hero/hero1.avif", "address": {
"@type": "PostalAddress", "streetAddress": "Sharjah, UAE", "addressLocality": "Sharjah", "addressCountry": "UAE"
},
"url": "https://yourwebsite.com", "telephone": "+971501234567", "priceRange": "$", "openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
"opens": "09:00", "closes": "18:00"
},
{
"@type": "OpeningHoursSpecification", "dayOfWeek": "Saturday", "opens": "10:00", "closes": "14:00"
}
],
"aggregateRating": {
"@type": "AggregateRating", "ratingValue": "4.9", "reviewCount": "677"
},
"description": "Your trusted family dental clinic in Sharjah, UAE, offering comprehensive, compassionate dental care for all ages with expert specialists and state-of-the-art equipment. Providing the best dental services for a healthy, radiant smile."
}
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}