From 2bf5d63f0c73eed2aa8940172cd4c504e2811789 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 08:46:55 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 880ad47..66e8daa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Wood Flame Moerdijk - Professional General Contractor", description: "Expert general contracting services in Moerdijk. Quality construction, renovation, and consulting. Trusted by local businesses and homeowners. 4.1★ rated.", keywords: "general contractor Moerdijk, construction services, renovation, building contractor Netherlands", openGraph: { - title: "Wood Flame Moerdijk - Professional General Contractor", description: "Expert general contracting services in Moerdijk. Quality construction and renovation work.", siteName: "Wood Flame Moerdijk B.V.", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/experts-check-warehouse-inventory_482257-75354.jpg", alt: "Wood Flame Moerdijk professional construction"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Wood Flame Moerdijk - General Contractor", description: "Professional construction and renovation services in Moerdijk", images: ["http://img.b2bpic.net/free-photo/experts-check-warehouse-inventory_482257-75354.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Wood Flame Moerdijk - Professional General Contracting", description: "Expert general contracting services in Moerdijk. Professional construction solutions with precision craftsmanship and dedicated customer service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +