Update src/app/layout.tsx

This commit is contained in:
2026-03-07 13:05:26 +00:00
parent 185af72e6e
commit 65376e1824

View File

@@ -1,57 +1,78 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
export const metadata: Metadata = {
title: "Rehoboth Dental Clinic - Professional Dental Care in Kigali", description: "Experience exceptional dental care at Rehoboth Dental Clinic in Kigali, Rwanda. Expert dentists, modern facilities, and comprehensive services. Open Monday-Saturday, 8AM-8PM. Book your appointment today!", keywords: "dental clinic Kigali, dentist Rwanda, dental services, teeth cleaning, orthodontics, emergency dental care, professional dentistry", metadataBase: new URL("https://rehobothdental.rw"),
alternates: {
canonical: "https://rehobothdental.rw"},
title: "Rehoboth Dental Clinic - Professional Dental Care in Kigali", description: "Experience exceptional dental care at Rehoboth Dental Clinic in Kigali. We offer comprehensive dental services including checkups, cleanings, orthodontics, teeth whitening, and emergency care. Book your appointment today!", keywords: "dental clinic, dental care, dentist in Kigali, teeth cleaning, orthodontics, teeth whitening, emergency dental care, professional dentistry", authors: [{ name: "Rehoboth Dental Clinic" }],
openGraph: {
title: "Rehoboth Dental Clinic - Your Smile, Our Priority", description: "Professional dental care in a friendly environment. Comprehensive services from checkups to emergency care.", url: "https://rehobothdental.rw", siteName: "Rehoboth Dental Clinic", type: "website", images: [
title: "Rehoboth Dental Clinic - Professional Dental Care in Kigali", description: "Experience exceptional dental care at Rehoboth Dental Clinic. Comprehensive services for your smile and oral health.", type: "website", url: "https://rehobothdental.com", images: [
{
url: "http://img.b2bpic.net/free-photo/female-patient-opening-her-mouth-doctor-look-her-throat-otolaryngologist-examines-sore-throat-patient_657921-196.jpg", alt: "smiling dentist patient dental clinic professional"},
url: "https://img.b2bpic.net/free-photo/happy-female-dentist-pointing-digital-tablet-screen-female-patient-clinic_23-2147879186.jpg", width: 1200,
height: 630,
alt: "Rehoboth Dental Clinic"},
],
},
twitter: {
card: "summary_large_image", title: "Rehoboth Dental Clinic - Professional Dental Care", description: "Experience exceptional dental care in Kigali. We go the extra mile beyond your expectations.", images: ["http://img.b2bpic.net/free-photo/happy-female-dentist-pointing-digital-tablet-screen-female-patient-clinic_23-2147879186.jpg"],
},
robots: {
index: true,
follow: true,
card: "summary_large_image", title: "Rehoboth Dental Clinic - Professional Dental Care", description: "Book your dental appointment at Rehoboth Dental Clinic in Kigali.", images: [
"https://img.b2bpic.net/free-photo/happy-female-dentist-pointing-digital-tablet-screen-female-patient-clinic_23-2147879186.jpg"],
},
robots: "index, follow", viewport: "width=device-width, initial-scale=1", alternates: {
canonical: "https://rehobothdental.com"},
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<head>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{
__html: JSON.stringify({
"@context": "https://schema.org", "@type": "LocalBusiness", "@id": "https://rehobothdental.com", name: "Rehoboth Dental Clinic", description: "Professional dental clinic offering comprehensive dental services in Kigali, Rwanda", image: "https://img.b2bpic.net/free-photo/happy-female-dentist-pointing-digital-tablet-screen-female-patient-clinic_23-2147879186.jpg", url: "https://rehobothdental.com", telephone: "+250792891566", address: {
"@type": "PostalAddress", streetAddress: "68 KG 208 St", addressLocality: "Kigali", postalCode: "N/A", addressCountry: "RW"},
priceRange: "$$", openingHoursSpecification: {
"@type": "OpeningHoursSpecification", dayOfWeek: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
opens: "08:00", closes: "20:00"},
areaServed: "Kigali, Rwanda", sameAs: [
"https://www.facebook.com/rehobothdental", "https://www.instagram.com/rehobothdental", "https://www.whatsapp.com"],
serviceType: [
"General Dental Checkups", "Professional Teeth Cleaning", "Tooth Filling", "Tooth Extraction", "Orthodontics and Braces", "Teeth Whitening", "Emergency Dental Care"],
}),
}}
/>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{
__html: JSON.stringify({
"@context": "https://schema.org", "@type": "FAQPage", mainEntity: [
{
"@type": "Question", name: "What are your clinic hours?", acceptedAnswer: {
"@type": "Answer", text: "We are open Monday to Saturday from 8:00 AM to 8:00 PM. We are closed on Sundays. For emergencies outside our regular hours, please call +250 792 891 566."},
},
{
"@type": "Question", name: "How do I book an appointment?", acceptedAnswer: {
"@type": "Answer", text: "You can book an appointment online through our website, call us at +250 792 891 566, or visit us in person at 68 KG 208 St, Kigali, Rwanda."},
},
{
"@type": "Question", name: "What payment methods do you accept?", acceptedAnswer: {
"@type": "Answer", text: "We accept Credit Cards, Debit Cards, and NFC Mobile Payments. All payments are processed securely."},
},
{
"@type": "Question", name: "Do you handle emergency cases?", acceptedAnswer: {
"@type": "Answer", text: "Yes, we provide emergency dental care services. Call us immediately at +250 792 891 566 if you have a dental emergency."},
},
],
}),
}}
/>
</head>
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1440,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}