From 7c0f1a651c94a23dc4933262e6bc706542ce1ee6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 17:43:17 +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 b72432e..5e5481d 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -81,11 +81,11 @@ export default function AboutPage() { background={{ variant: "plain" }} mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/friends-having-fun-restaurant_146671-15437.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/friends-having-fun-restaurant_146671-15437.jpg?_wi=2", imageAlt: "Diverse team professionals social media experts", }, { - imageSrc: "http://img.b2bpic.net/free-photo/business-executives-reading-sticky-notes_1170-1720.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/business-executives-reading-sticky-notes_1170-1720.jpg?_wi=2", imageAlt: "Professional marketing team working together", }, ]} @@ -147,7 +147,7 @@ export default function AboutPage() { quote: "Stellar Agency completely transformed our social media presence. Their creative approach and data-driven strategy increased our engagement by 340% within six months. They've become an integral part of our marketing team.", tag: "Fashion & Luxury", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-successful-businesswoman-looking-into-camera-sitting-restaurant-business-lady-with-stylish-hairstyle-wears-elegant-suit-business-meeting-attractive-appearance_8353-12611.jpg", - imageSrc: "http://img.b2bpic.net/free-photo/seductive-lady-pink-silk-robe-holds-champagne-flute_8353-90.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/seductive-lady-pink-silk-robe-holds-champagne-flute_8353-90.jpg?_wi=5", }, { id: "2", @@ -157,7 +157,7 @@ export default function AboutPage() { quote: "The team at Stellar Agency brought our tech startup from zero to hero on social media. Their innovative campaigns and community management turned our followers into loyal customers. Highly recommended!", tag: "Technology", avatarSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081912.jpg", - imageSrc: "http://img.b2bpic.net/free-psd/software-engineering-instagram-template-design_23-2151848828.jpg", + imageSrc: "http://img.b2bpic.net/free-psd/software-engineering-instagram-template-design_23-2151848828.jpg?_wi=5", }, { id: "3", @@ -167,7 +167,7 @@ export default function AboutPage() { quote: "Working with Stellar Agency has been a game-changer for our brand. They helped us build an authentic community and increase our engagement by over 500%. Their team truly understands social media strategy.", tag: "Beauty & Wellness", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-young-confident-businessman-wearing-glasses_158595-5356.jpg", - imageSrc: "http://img.b2bpic.net/free-psd/natural-hair-haircare-instagram-posts-collection_23-2149954197.jpg", + imageSrc: "http://img.b2bpic.net/free-psd/natural-hair-haircare-instagram-posts-collection_23-2149954197.jpg?_wi=5", }, ]} textboxLayout="default" -- 2.49.1 From 7f6f9a20bb4d4f8dacad407a380798effaeb555c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 17:43:18 +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 2ed8420..636cb9c 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 { 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: "Premium Social Media Agency | Strategic Brand Management", + description: "Transform your brand's digital presence with Stellar Agency. We deliver data-driven social media strategies, engaging content, and measurable results for leading brands.", + keywords: "social media agency, social media management, content creation, social media strategy, digital marketing, brand management, influencer marketing", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Stellar Agency - Premium Social Media Management", + description: "Strategic social media solutions that drive engagement, build communities, and deliver measurable results.", + url: "https://stellar-agency.com", + siteName: "Stellar Agency", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/business-executives-reading-sticky-notes_1170-1720.jpg", + alt: "Stellar Agency - Social Media Excellence", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Stellar Agency - Premium Social Media Management", + description: "Transform your brand's social media presence with our data-driven strategies and creative excellence.", + images: ["http://img.b2bpic.net/free-photo/business-executives-reading-sticky-notes_1170-1720.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +60,9 @@ export default function RootLayout({ return ( - + {children}