diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ba9d835..71c38e7 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -121,7 +121,7 @@ export default function AboutPage() { icon: Award, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/woman-using-printer-while-working-office_23-2149456943.jpg" + imageSrc="http://img.b2bpic.net/free-photo/woman-using-printer-while-working-office_23-2149456943.jpg?_wi=2" imageAlt="Professional office environment with modern copier equipment" mediaAnimation="slide-up" textboxLayout="default" @@ -148,21 +148,21 @@ export default function AboutPage() { id: "medical", name: "Medical Offices", price: "Specialized Solutions", - imageSrc: "http://img.b2bpic.net/free-vector/flat-medical-landing-page_23-2149024239.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/flat-medical-landing-page_23-2149024239.jpg?_wi=2", imageAlt: "Medical office with professional printing setup", }, { id: "legal", name: "Law Firms", price: "Document Management", - imageSrc: "http://img.b2bpic.net/free-photo/business-professionals-watching-presentation-computer-monitor-together-discussing-project-sitting-workplace-pointing-display-business-communication-teamwork-concept_74855-11550.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/business-professionals-watching-presentation-computer-monitor-together-discussing-project-sitting-workplace-pointing-display-business-communication-teamwork-concept_74855-11550.jpg?_wi=2", imageAlt: "Law office professional workspace", }, { id: "education", name: "Schools & Universities", price: "Educational Institutions", - imageSrc: "http://img.b2bpic.net/free-vector/flat-university-concept-background_23-2148189763.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/flat-university-concept-background_23-2148189763.jpg?_wi=2", imageAlt: "School campus with office printing facility", }, ]} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 591b782..d404d01 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -128,7 +128,7 @@ export default function ContactPage() { icon: Clock, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/woman-using-printer-work-high-angle_23-2149713652.jpg" + imageSrc="http://img.b2bpic.net/free-photo/woman-using-printer-work-high-angle_23-2149713652.jpg?_wi=2" imageAlt="Professional contact and consultation" mediaAnimation="slide-up" textboxLayout="default" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..34f02c5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,54 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } 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 { Manrope } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Gateway Business Solutions | Copier Leasing & Repair St. Louis", + description: "Professional copier sales, leasing, repair, and managed print services for St. Louis businesses. Local service, fast response, affordable solutions.", + keywords: "copier leasing St Louis, copier sales, printer repair, managed print services", + metadataBase: new URL("https://gatewaybizsolutions.com"), + alternates: { + canonical: "https://gatewaybizsolutions.com", + }, + openGraph: { + title: "Gateway Business Solutions - Copier & Printing Solutions", + description: "Sales, leasing, repair, and managed print services for St. Louis businesses", + url: "https://gatewaybizsolutions.com", + siteName: "Gateway Business Solutions", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Gateway Business Solutions - Copier Leasing St. Louis", + description: "Professional copier and office equipment solutions for local businesses", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +57,9 @@ export default function RootLayout({ return ( - + {children}