From 2c2af75c2ec3a861f69bc8d5d89a0cc9e4e66a7b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 10:32:58 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 422c715..e77bccd 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -85,7 +85,7 @@ export default function AboutPage() { useInvertedBackground={false} mediaAnimation="slide-up" metricsAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/mechanic-with-face-mask-going-through-reports-while-talking-customer-auto-repair-shop_637285-11549.jpg" + imageSrc="http://img.b2bpic.net/free-photo/mechanic-with-face-mask-going-through-reports-while-talking-customer-auto-repair-shop_637285-11549.jpg?_wi=2" imageAlt="Craftsmanship in progress" metrics={trustMetrics} /> From 710978ec48c0a30858c173b26903ffffc55dec76 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 10:32:58 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 42 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..e00a1b1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,55 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } 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 { Mulish } 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 mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Luux Sign & More - Premium Signage & Branding Solutions", + description: "Premium signage and visual branding solutions in Dongen, Netherlands. Gevelreclame, carwraps, belettering, and complete branding services for businesses.", + keywords: "signage, branding, gevelreclame, carwrap, belettering, Dongen, Netherlands, visual identity", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Luux Sign & More - Premium Signage & Branding", + description: "Signing die opvalt. Professional signage and branding solutions that make your brand visible.", + siteName: "Luux Sign & More", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-vector/minimal-style-architect-instagram-stories-template_23-2149423815.jpg", + alt: "Luux Sign & More - Premium Branding Solutions", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Luux Sign & More - Premium Signage & Branding", + description: "Professional signage and visual branding for businesses in Dongen, Netherlands.", + images: ["http://img.b2bpic.net/free-vector/minimal-style-architect-instagram-stories-template_23-2149423815.jpg"], + }, +}; export default function RootLayout({ children, @@ -31,7 +59,9 @@ export default function RootLayout({ return ( - + {children}