From b240f1b9dc120dedee12e3ae467545047509ae11 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 17:00:51 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index cc9494c..e3ce9ab 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -86,7 +86,7 @@ export default function AboutPage() { { value: "10+", title: "Years of Industry Experience" }, { value: "500+", title: "Brands Successfully Transformed" }, ]} - imageSrc="http://img.b2bpic.net/free-photo/group-young-business-people-working-office_158595-5207.jpg" + imageSrc="http://img.b2bpic.net/free-photo/group-young-business-people-working-office_158595-5207.jpg?_wi=2" imageAlt="About our agency team and culture" useInvertedBackground={false} mediaAnimation="slide-up" @@ -110,7 +110,7 @@ export default function AboutPage() { title: "Alex Turner", subtitle: "Chief Strategy Officer", detail: "alex@apexagency.com", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-executive-standing-with-arms-crossed_107420-63906.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-executive-standing-with-arms-crossed_107420-63906.jpg?_wi=2", imageAlt: "Alex Turner", }, { @@ -118,7 +118,7 @@ export default function AboutPage() { title: "Jordan Blake", subtitle: "Creative Director", detail: "jordan@apexagency.com", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-grey-haired-businessman-standing_74855-10324.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-grey-haired-businessman-standing_74855-10324.jpg?_wi=2", imageAlt: "Jordan Blake", }, ], @@ -132,7 +132,7 @@ export default function AboutPage() { title: "Casey Parker", subtitle: "Content Strategist", detail: "casey@apexagency.com", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg?_wi=2", imageAlt: "Casey Parker", }, { @@ -140,7 +140,7 @@ export default function AboutPage() { title: "Morgan Fields", subtitle: "Copywriter", detail: "morgan@apexagency.com", - imageSrc: "http://img.b2bpic.net/free-photo/woman-embracing-book_23-2147797373.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/woman-embracing-book_23-2147797373.jpg?_wi=2", imageAlt: "Morgan Fields", }, ], -- 2.49.1 From f8123c2d44a4b0333146af1cac821b01e7553628 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 17:00:52 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 43 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0077e1c..e1620b0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,57 @@ 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: "Apex Agency - Premium Social Media Marketing", + description: "Transform your brand with premium social media strategy, content creation, and community management. Partner with industry-leading agency for measurable growth.", + keywords: "social media agency, digital marketing, content creation, social media strategy, brand growth", + openGraph: { + title: "Apex Agency - Premium Social Media Marketing", + description: "Elevate your social presence with data-driven strategy and creative excellence.", + url: "https://apexagency.com", + siteName: "Apex Agency", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/worker-talking-phone-office_23-2147601356.jpg", + alt: "Apex Agency - Social Media Solutions", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Apex Agency - Premium Social Media Marketing", + description: "Transform your brand into a social media powerhouse with our expert team.", + images: ["http://img.b2bpic.net/free-photo/worker-talking-phone-office_23-2147601356.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +60,9 @@ export default function RootLayout({ return ( - + {children}