From 4a3442f7017d56f82637536566a6c60ee12b89ff Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 09:59:47 +0000 Subject: [PATCH 1/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 4f3ab70..b1042ee 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -80,7 +80,7 @@ export default function ContactPage() { { text: "Email sturen", href: "mailto:info@vilaincarolinetandarts.be" }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/dentist-measuring-plastic-teeth-model-with-vernier-caliper-near-female-patient_23-2147862043.jpg" + imageSrc="http://img.b2bpic.net/free-photo/dentist-measuring-plastic-teeth-model-with-vernier-caliper-near-female-patient_23-2147862043.jpg?_wi=4" imageAlt="Contact our dental clinic" showDimOverlay={false} showBlur={true} -- 2.49.1 From f2bc8000d6ca3ef6f605bfcbf3fbc0127579fce7 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 09:59:47 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 61 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 49 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..3e7ce9b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}