Update src/app/layout.tsx

This commit is contained in:
2026-03-15 09:59:47 +00:00
parent 4a3442f701
commit f2bc8000d6

View File

@@ -1,27 +1,62 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Vilain Caroline Tandarts | Tandarts in Belsele",
description: "Persoonlijke tandzorg in Belsele. Meer dan 20 jaar ervaring, kindvriendelijke praktijk en nieuwe patiënten welkom. Neem vandaag nog contact op.",
keywords: "tandarts belsele, tandarts sint niklaas, tandarts nieuwe patiënten, kindertandarts, dentist belgium",
metadataBase: new URL("https://vilaincarolinetandarts.be"),
alternates: {
canonical: "https://vilaincarolinetandarts.be",
},
openGraph: {
title: "Vilain Caroline Tandarts",
description: "Persoonlijke, zorgvuldige tandheelkunde in Belsele met meer dan 20 jaar ervaring.",
url: "https://vilaincarolinetandarts.be",
siteName: "Vilain Caroline Tandarts",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-vector/flat-hospital-social-media-cover-template_23-2149626249.jpg",
alt: "Vilain Caroline Tandarts clinic",
},
],
},
twitter: {
card: "summary_large_image",
title: "Vilain Caroline Tandarts",
description: "Persoonlijke tandheelkunde in Belsele - uw vertrouwde tandarts",
images: [
"http://img.b2bpic.net/free-vector/flat-hospital-social-media-cover-template_23-2149626249.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
@@ -31,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}