From 82e2f8ed100b057e039d231be91f8b45fc310e39 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 08:56:26 +0000 Subject: [PATCH 1/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 4f6bf3d..3e7779b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -162,7 +162,7 @@ export default function ContactPage() { quote: "Luux transformed our retail space with stunning facade signage that immediately increased customer engagement. Their attention to detail and creative vision exceeded our expectations.", name: "Marcus van den Berg", role: "Retail Manager", - imageSrc: "http://img.b2bpic.net/free-photo/confused-businessman-office_1098-3136.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/confused-businessman-office_1098-3136.jpg?_wi=3", }, { id: "2", @@ -170,7 +170,7 @@ export default function ContactPage() { quote: "Working with Luux was seamless. From concept through installation, they demonstrated exceptional craftsmanship and responsiveness. Our corporate branding project is now a source of pride.", name: "Emma Hartman", role: "Corporate Director", - imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-sitting-couch-smiling_23-2148095699.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-sitting-couch-smiling_23-2148095699.jpg?_wi=3", }, { id: "3", @@ -178,7 +178,7 @@ export default function ContactPage() { quote: "The vehicle wraps we commissioned are absolute showstoppers. Luux's team understood our brand essence and translated it into compelling mobile advertising that generates attention everywhere we go.", name: "Stefan Knieling", role: "Fleet Operations Manager", - imageSrc: "http://img.b2bpic.net/free-photo/man-by-truck-guy-delivery-uniform-man-with-clipboard_1157-46178.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-by-truck-guy-delivery-uniform-man-with-clipboard_1157-46178.jpg?_wi=3", }, ]} /> -- 2.49.1 From 814cba198f8dad91a226bcc4e338e4c7ba2fab98 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 08:56:27 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 45 +++++++++++++++++++++++++++++++++++++-------- 1 file changed, 37 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..a4c2022 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,51 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Raleway } 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 { Raleway } 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 raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Luux Sign & More | Premium Branding & Signage Studio", + description: "Premium creative studio specializing in bespoke signage, branding solutions, and visual identity design in Dongen, Netherlands. Elevate your brand presence.", + keywords: "signage, branding, gevelreclame, interieur signing, autobelettering, raambelettering, lichtreclame, creative agency, Dongen", + metadataBase: new URL("https://luuxsign.nl"), + alternates: { + canonical: "https://luuxsign.nl", + }, + openGraph: { + title: "Luux Sign & More | Premium Branding & Signage", + description: "Elevate your brand with premium, bespoke signage and branding solutions.", + siteName: "Luux Sign & More", + type: "website", + }, + twitter: { + card: "summary_large_image", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +54,9 @@ export default function RootLayout({ return ( - + {children}