Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${figtree.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -172,25 +172,25 @@ export default function HomePage() {
|
||||
{
|
||||
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",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-young-businessman-with-his-arms-crossed-looking-camera_23-2148176207.jpg?_wi=1",
|
||||
imageAlt: "Erik van Dijk portrait",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Sandra Jansen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-posing-street_23-2148213468.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-posing-street_23-2148213468.jpg?_wi=1",
|
||||
imageAlt: "Sandra Jansen portrait",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Michael Wolters",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-senior-businessman-standing-window_1262-3120.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-senior-businessman-standing-window_1262-3120.jpg?_wi=1",
|
||||
imageAlt: "Michael Wolters portrait",
|
||||
},
|
||||
{
|
||||
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",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-glasses-standing-with-arms-folded-smiling_74855-10329.jpg?_wi=1",
|
||||
imageAlt: "Lisa de Vries portrait",
|
||||
},
|
||||
]}
|
||||
@@ -218,7 +218,7 @@ export default function HomePage() {
|
||||
name: "Maria Santos",
|
||||
handle: "Founder, Consulting Studio",
|
||||
testimonial: "The team's expertise in international structuring was invaluable when we expanded. Professional, strategic, and results-driven.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friendly-successful-business-lady-wearing-formal-suit-glasses-standing-with-arms-folded-smiling_74855-9932.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friendly-successful-business-lady-wearing-formal-suit-glasses-standing-with-arms-folded-smiling_74855-9932.jpg?_wi=1",
|
||||
imageAlt: "Maria Santos testimonial",
|
||||
},
|
||||
{
|
||||
@@ -234,7 +234,7 @@ export default function HomePage() {
|
||||
name: "Elena Kowalski",
|
||||
handle: "Director, Digital Marketing",
|
||||
testimonial: "They treated my business finances like they were their own. Strategic thinking, not just compliance. Highly recommend.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friendly-successful-business-lady-wearing-formal-suit-glasses-standing-with-arms-folded-smiling_74855-9932.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friendly-successful-business-lady-wearing-formal-suit-glasses-standing-with-arms-folded-smiling_74855-9932.jpg?_wi=2",
|
||||
imageAlt: "Elena Kowalski testimonial",
|
||||
},
|
||||
{
|
||||
@@ -342,7 +342,7 @@ export default function HomePage() {
|
||||
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=1"
|
||||
imageAlt="Consultation meeting professional office"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
|
||||
Reference in New Issue
Block a user