diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 60037fa..96ab9d4 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -110,7 +110,7 @@ export default function AboutPage() { title: "Chief Executive Officer", subtitle: "Strategic Leadership & Vision", detail: "20+ years driving organizational transformation and strategic innovation across Fortune 500 companies. Expert in market strategy, organizational design, and executive leadership development.", - imageSrc: "http://img.b2bpic.net/free-photo/happy-senior-lady-with-laptop-conference-room_1262-3778.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-senior-lady-with-laptop-conference-room_1262-3778.jpg?_wi=2", imageAlt: "CEO Executive Director", }, { @@ -118,7 +118,7 @@ export default function AboutPage() { title: "Chief Operations Officer", subtitle: "Operational Excellence", detail: "15+ years optimizing business operations, implementing systems, and driving efficiency improvements. Specialized in operational transformation, process optimization, and scalable business models.", - imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-standing-with-crossed-arms_23-2148095775.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-standing-with-crossed-arms_23-2148095775.jpg?_wi=2", imageAlt: "COO Executive Leader", }, { @@ -126,7 +126,7 @@ export default function AboutPage() { title: "Chief Strategy Officer", subtitle: "Strategic Planning & Execution", detail: "18+ years developing and executing strategic initiatives delivering measurable business growth and market leadership. Expert in competitive strategy, market entry, and organizational alignment.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-businessman-conference-room-thinking-about-future_482257-25787.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-businessman-conference-room-thinking-about-future_482257-25787.jpg?_wi=2", imageAlt: "CSO Executive Consultant", }, ], diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0077e1c..d8946e2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,55 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Chief Executive Manager | Strategic Leadership Excellence", + description: "Executive management services delivering strategic planning, leadership coaching, and organizational transformation for Fortune 500 companies and enterprises.", + keywords: "executive management, strategic planning, leadership coaching, organizational transformation, business consulting, executive coaching", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Chief Executive Manager | Strategic Excellence", + description: "Transform your organization with expert executive management and strategic leadership services.", + type: "website", + siteName: "Executive Management", + images: [ + { + url: "http://img.b2bpic.net/free-photo/businesswoman-working-warehouse_329181-12811.jpg", + alt: "Executive Leadership Excellence", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Chief Executive Manager | Strategic Excellence", + description: "Executive management and strategic planning services for organizational transformation.", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +58,9 @@ export default function RootLayout({ return ( - + {children}