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} /> 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}