From 7832b27995f3528f44a641304fda4344f6a0fa80 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 03:13:08 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 315e20c..5fa566f 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -112,28 +112,28 @@ export default function AboutPage() { id: "1", name: "Erik van Dijk", imageSrc: - "http://img.b2bpic.net/free-photo/portrait-successful-young-businessman-with-his-arms-crossed-looking-camera_23-2148176207.jpg", + "http://img.b2bpic.net/free-photo/portrait-successful-young-businessman-with-his-arms-crossed-looking-camera_23-2148176207.jpg?_wi=2", imageAlt: "portrait professional businessman advisor", }, { id: "2", name: "Sandra Jansen", imageSrc: - "http://img.b2bpic.net/free-photo/business-woman-posing-street_23-2148213468.jpg", + "http://img.b2bpic.net/free-photo/business-woman-posing-street_23-2148213468.jpg?_wi=2", imageAlt: "portrait professional businesswoman consultant", }, { id: "3", name: "Michael Wolters", imageSrc: - "http://img.b2bpic.net/free-photo/successful-senior-businessman-standing-window_1262-3120.jpg", + "http://img.b2bpic.net/free-photo/successful-senior-businessman-standing-window_1262-3120.jpg?_wi=2", imageAlt: "portrait professional businessman consultant", }, { id: "4", name: "Lisa de Vries", imageSrc: - "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-glasses-standing-with-arms-folded-smiling_74855-10329.jpg", + "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-glasses-standing-with-arms-folded-smiling_74855-10329.jpg?_wi=2", imageAlt: "portrait professional businesswoman advisor", }, ]} From 00d73f1c4ad912daee303a66b6431d4eee195538 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 03:13:08 +0000 Subject: [PATCH 2/4] 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 81f553b..4877a11 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -111,7 +111,7 @@ export default function ContactPage() { rows: 6, required: true, }} - imageSrc="http://img.b2bpic.net/free-photo/black-female-insurance-agent-using-computer-with-couple-consultations-office_637285-1138.jpg" + imageSrc="http://img.b2bpic.net/free-photo/black-female-insurance-agent-using-computer-with-couple-consultations-office_637285-1138.jpg?_wi=2" imageAlt="consultation meeting professional office" mediaAnimation="slide-up" useInvertedBackground={false} From 3ad696ee846acbe6b06ad6619a2073a1e98ef018 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 03:13:09 +0000 Subject: [PATCH 3/4] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..934badd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } 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 { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Geldinstituut - Financial Strategy for Entrepreneurs", + description: "Professional financial advisory service helping entrepreneurs optimize taxes, increase profits, and build long-term wealth through strategic financial planning.", + keywords: "financial strategy, tax optimization, wealth management, entrepreneur finance, business advisory", + metadataBase: new URL("https://geldinstituut.nl"), + alternates: { + canonical: "https://geldinstituut.nl", + }, + openGraph: { + title: "Geldinstituut - Strategic Financial Guidance", + description: "Optimize your finances like a professional wealth management firm. Tax optimization, profit retention, and strategic wealth building.", + url: "https://geldinstituut.nl", + siteName: "Geldinstituut", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/public-examination-preparation-concept_23-2149369899.jpg", + alt: "professional financial advisor office meeting", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Geldinstituut - Financial Strategy", + description: "Professional financial advisory for entrepreneurs", + images: [ + "http://img.b2bpic.net/free-photo/public-examination-preparation-concept_23-2149369899.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}