diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index f4d4a9d..0f09c1a 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -91,21 +91,21 @@ export default function AboutPage() { id: "strategic-consulting", title: "Strategic Consulting", description: "Our expert consultants work with your leadership team to develop customized growth strategies tailored to your unique market position and business goals.", - imageSrc: "http://img.b2bpic.net/free-photo/people-working-elegant-cozy-office-space_23-2149548730.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/people-working-elegant-cozy-office-space_23-2149548730.jpg?_wi=2", imageAlt: "Strategic Consulting Session", }, { id: "implementation", title: "Implementation & Integration", description: "We manage the complete implementation of our platform and solutions, ensuring seamless integration with your existing systems and minimal disruption.", - imageSrc: "http://img.b2bpic.net/free-vector/business-infographic-template-with-photo_23-2148234010.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/business-infographic-template-with-photo_23-2148234010.jpg?_wi=2", imageAlt: "Implementation Process", }, { id: "analytics-insights", title: "Real-Time Analytics & Insights", description: "Access powerful analytics dashboards that provide real-time visibility into your business metrics, helping you make informed decisions faster.", - imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-with-information_23-2148372854.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-with-information_23-2148372854.jpg?_wi=2", imageAlt: "Analytics Dashboard", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..d5a9476 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_Sans } 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 { Open_Sans } 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 openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "WTXpand - Sales & Analytics Growth Platform", + description: "Expand your sales and analytics capabilities with WTXpand. Proven expertise helping 500+ companies achieve 245% average growth through data-driven strategy.", + keywords: "sales growth, analytics platform, business expansion, data-driven strategy, SaaS growth", + metadataBase: new URL("https://wtxpand.com"), + alternates: { + canonical: "https://wtxpand.com", + }, + openGraph: { + title: "WTXpand - Expand Your Sales & Analytics", + description: "Transform your business with proven sales optimization and analytics strategies. 98% success rate across 500+ companies.", + url: "https://wtxpand.com", + siteName: "WTXpand", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-vector/dashboard-user-panel-with-information_23-2148372854.jpg", + alt: "WTXpand - Sales and Analytics Growth Platform", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "WTXpand - Expand Your Sales & Analytics", + description: "245% average client growth. 98% success rate. 500+ companies transformed.", + images: ["http://img.b2bpic.net/free-vector/dashboard-user-panel-with-information_23-2148372854.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}