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" 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}