diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 22030a6..a8343d1 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -54,23 +54,23 @@ export default function AboutPage() { ]} mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/las-vegas-strip_649448-3260.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/las-vegas-strip_649448-3260.jpg?_wi=5", imageAlt: "SLD Services about story", }, { - imageSrc: "http://img.b2bpic.net/free-photo/international-worker-s-day-with-doctor-tools_23-2150269677.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/international-worker-s-day-with-doctor-tools_23-2150269677.jpg?_wi=5", imageAlt: "Military expertise and experience", }, { - imageSrc: "http://img.b2bpic.net/free-photo/back-view-company-experts-working-office-two-serious-man-formalwear-sitting-looking-woman-presenting-business-plan-market-data-board-financial-analytics-business-growth-concept_74855-24315.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/back-view-company-experts-working-office-two-serious-man-formalwear-sitting-looking-woman-presenting-business-plan-market-data-board-financial-analytics-business-growth-concept_74855-24315.jpg?_wi=6", imageAlt: "Professional team consultation", }, { - imageSrc: "http://img.b2bpic.net/free-photo/high-view-safety-construction-gloves-medical-mask_23-2148784094.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/high-view-safety-construction-gloves-medical-mask_23-2148784094.jpg?_wi=5", imageAlt: "Quality equipment standards", }, { - imageSrc: "http://img.b2bpic.net/free-photo/military-man-firing-range-checking-see-if-he-shot-bullseye_482257-120135.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/military-man-firing-range-checking-see-if-he-shot-bullseye_482257-120135.jpg?_wi=5", imageAlt: "Training and preparedness", }, ]} @@ -93,7 +93,7 @@ export default function AboutPage() { title: "Years of Industry Leadership", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/las-vegas-strip_649448-3260.jpg" + imageSrc="http://img.b2bpic.net/free-photo/las-vegas-strip_649448-3260.jpg?_wi=6" imageAlt="SLD Services leadership and expertise" useInvertedBackground={false} mediaAnimation="slide-up" @@ -116,7 +116,7 @@ export default function AboutPage() { name: "Shanna Diep", role: "CEO & Founder", description: "20-year Marine Corps Reserve veteran with extensive government distribution experience. Her visionary leadership has successfully guided SLD Services through over 100 million dollars in government contracts, establishing the company as a trusted partner in defense procurement.", - imageSrc: "http://img.b2bpic.net/free-photo/surprised-female-executive-sitting-board-room_1262-5873.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/surprised-female-executive-sitting-board-room_1262-5873.jpg?_wi=2", imageAlt: "Shanna Diep CEO and Founder", socialLinks: [ { @@ -134,7 +134,7 @@ export default function AboutPage() { name: "Ivon Hernandez", role: "Inside/Outside Sales Director", description: "Specialist in WAWF, GCPC, and DAI contracting with deep expertise in equipment delivery and government procurement processes. Ivon's knowledge ensures seamless navigation of complex federal contracting requirements for every client engagement.", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-interviewee-taking-notes_23-2149037865.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-interviewee-taking-notes_23-2149037865.jpg?_wi=2", imageAlt: "Ivon Hernandez Sales Director", socialLinks: [ { diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..8056cdb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Archivo } 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 { Archivo } 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 archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "SLD Services - Government Contracting & Military Equipment Procurement", + description: "Woman-owned defense contractor providing tactical and medical equipment, government procurement consulting, and training to military branches and federal agencies through DLA contracts.", + keywords: "government contracting, military procurement, DLA contracts, tactical equipment, defense logistics, federal contracting", + openGraph: { + title: "SLD Services - Defense Logistics & Government Procurement", + description: "Decades of expertise in military equipment procurement and government contracting solutions.", + siteName: "SLD Services", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/international-worker-s-day-with-doctor-tools_23-2150269677.jpg", + alt: "SLD Services Military Equipment Procurement", + } + ], + }, + twitter: { + card: "summary_large_image", + title: "SLD Services - Government Contracting Excellence", + description: "Your trusted partner for military equipment procurement and government logistics.", + images: ["http://img.b2bpic.net/free-photo/international-worker-s-day-with-doctor-tools_23-2150269677.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}