From adcf0df96d803ceb73c1e8b1f91ab1f7c0affa44 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 07:30:51 +0000 Subject: [PATCH 1/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 e13fc94..39a4b1b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -133,7 +133,7 @@ export default function ContactPage() { ]} mediaAnimation="slide-up" mediaPosition="right" - imageSrc="http://img.b2bpic.net/free-photo/woman-sitting-business-meeting_23-2149332955.jpg" + imageSrc="http://img.b2bpic.net/free-photo/woman-sitting-business-meeting_23-2149332955.jpg?_wi=2" imageAlt="FAQ Illustration" faqsAnimation="slide-up" textboxLayout="default" -- 2.49.1 From 6fb6c71a6b9153b9a50be19c4de8012f75c60dd1 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 07:30:51 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..e1ce146 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } 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 lato = Lato({ variable: "--font-lato", @@ -20,6 +24,39 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "WTXpand - Business Growth & Marketing Expansion", + description: "Transform your business with WTXpand's data-driven marketing strategies. Proven growth results, trusted by industry leaders. Expand your market reach today.", + keywords: "business growth, marketing expansion, growth strategy, market expansion, B2B marketing, sales growth", + metadataBase: new URL("https://wtxpand.com"), + alternates: { + canonical: "https://wtxpand.com", + }, + openGraph: { + title: "WTXpand - Expand Your Business Growth", + description: "Data-driven marketing strategies that deliver measurable growth. See how we've helped companies expand 247% on average.", + url: "https://wtxpand.com", + siteName: "WTXpand", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/computer-dark-room-with-graphs-screen_169016-57447.jpg", + alt: "WTXpand Marketing Dashboard", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "WTXpand - Business Growth Strategy", + description: "Transform your business with proven marketing expansion strategies.", + images: ["http://img.b2bpic.net/free-photo/computer-dark-room-with-graphs-screen_169016-57447.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}