diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index beaa38c..ff9d9fc 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -43,7 +43,7 @@ export default function AboutPage() { description="Mark de Jonge" subdescription="Ervaren stukadoor met 20+ jaar ervaring" icon={Hammer} - imageSrc="http://img.b2bpic.net/free-photo/foreman-orange-work-clothes-protective-eyewear-thoughtfully-looking-camera-using-handsaw-workshop_574295-1625.jpg" + imageSrc="http://img.b2bpic.net/free-photo/foreman-orange-work-clothes-protective-eyewear-thoughtfully-looking-camera-using-handsaw-workshop_574295-1625.jpg?_wi=2" imageAlt="Mark de Jonge aan het werk" mediaAnimation="slide-up" useInvertedBackground={false} @@ -60,17 +60,17 @@ export default function AboutPage() { { title: "Ervaring en vakmanschap", description: "Met meer dan 20 jaar ervaring leveren wij consequent hoog kwalitatief stucwerk.", - imageSrc: "http://img.b2bpic.net/free-photo/corporate-building-with-minimalist-empty-room_23-2148727505.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/corporate-building-with-minimalist-empty-room_23-2148727505.jpg?_wi=2", }, { title: "Professionele aanpak", description: "Onze methode garandeert perfecte afwerking en stipte naleving van afspraken.", - imageSrc: "http://img.b2bpic.net/free-photo/cement-abstract-copy-space-texture-background_1194-600562.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/cement-abstract-copy-space-texture-background_1194-600562.jpg?_wi=2", }, { title: "Gratis advies", description: "Wij bieden gratis advisering om uw project optimaal uit te voeren.", - imageSrc: "http://img.b2bpic.net/free-photo/weathered-concrete-wall-with-hole-water-stains_632498-60826.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/weathered-concrete-wall-with-hole-water-stains_632498-60826.jpg?_wi=2", }, ]} gridVariant="three-columns-all-equal-width" diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 0d5258a..a3847d3 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -75,7 +75,7 @@ export default function ContactPage() { required: true }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/flay-lay-gardening-tools-flower-pots_23-2148223997.jpg" + imageSrc="http://img.b2bpic.net/free-photo/flay-lay-gardening-tools-flower-pots_23-2148223997.jpg?_wi=3" imageAlt="Stukadoorsgereedschap" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..3a43f4d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,64 @@ import type { Metadata } from "next"; +import { Manrope, DM_Sans } from "next/font/google"; import { Halant } from "next/font/google"; import { Inter } 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 { Manrope } from "next/font/google"; -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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "M. de Jonge Stukadoors | Stucwerk & Afwerking Emmen", + description: "Professionele stukadoor in Emmen. Stucwerk, afwerking en renovatie. 4,9/5 rating. Gratis offerte aanvragen.", + keywords: "stukadoor Emmen, stucwerk Emmen, stukadoorsbedrijf Emmen, stukadoors, stucwerk", + openGraph: { + title: "M. de Jonge Stukadoors | Professioneel Stucwerk Emmen", + description: "Vakmanschap in stucwerk – strak, netjes en betrouwbaar. 4,9/5 beoordeling.", + url: "https://mdejongstukadoors.nl", + siteName: "M. de Jonge Stukadoors", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/young-foreman-orange-work-clothes-yellow-hardhat-thoughtfully-using-putty-knife-work_574295-1566.jpg", + alt: "M. de Jonge Stukadoors - Professioneel stucwerk" + } + ] + }, + twitter: { + card: "summary_large_image", + title: "M. de Jonge Stukadoors | Stucwerk Emmen", + description: "Professionele stukadoor met 20+ jaar ervaring. Gratis offerte.", + images: [ + "http://img.b2bpic.net/free-photo/young-foreman-orange-work-clothes-yellow-hardhat-thoughtfully-using-putty-knife-work_574295-1566.jpg" + ] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +67,9 @@ export default function RootLayout({ return ( - + {children}