Merge version_1 into main #1
@@ -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"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +74,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -86,11 +86,11 @@ export default function HomePage() {
|
||||
background={{ variant: "plain" }}
|
||||
mediaItems={[
|
||||
{
|
||||
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=1",
|
||||
imageAlt: "Social media strategy creative team collaboration",
|
||||
},
|
||||
{
|
||||
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=1",
|
||||
imageAlt: "Professional marketing team working together",
|
||||
},
|
||||
]}
|
||||
@@ -154,10 +154,10 @@ export default function HomePage() {
|
||||
title: "Strategy & Planning",
|
||||
description: "We develop customized social media strategies tailored to your brand's unique goals, audience, and market position. Our data-driven approach ensures maximum ROI.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/marketing-project-timeline-template_742173-20679.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/marketing-project-timeline-template_742173-20679.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/rising-business-growth-chart_1308-170777.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/rising-business-growth-chart_1308-170777.jpg?_wi=1",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -165,10 +165,10 @@ export default function HomePage() {
|
||||
title: "Content Creation",
|
||||
description: "From stunning visuals to compelling copy, we create engaging content that resonates with your audience and drives meaningful interactions across all platforms.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/notepad-passport-pen-dslr-camera-wooden-background_23-2147837125.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/notepad-passport-pen-dslr-camera-wooden-background_23-2147837125.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
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=1",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -176,10 +176,10 @@ export default function HomePage() {
|
||||
title: "Community Management",
|
||||
description: "We nurture your online communities, respond to customer inquiries, and foster authentic relationships with your followers to build lasting brand loyalty.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-diverse-people-using-smartphones_53876-25043.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-diverse-people-using-smartphones_53876-25043.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
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=1",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -187,10 +187,10 @@ export default function HomePage() {
|
||||
title: "Paid Advertising",
|
||||
description: "Strategic paid social campaigns that reach your target audience, maximize conversions, and deliver impressive ROI across Facebook, Instagram, TikTok, and LinkedIn.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-person-looking-finance-graphs_23-2150461354.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-person-looking-finance-graphs_23-2150461354.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
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=1",
|
||||
},
|
||||
},
|
||||
]}
|
||||
@@ -276,7 +276,7 @@ export default function HomePage() {
|
||||
price: "+340% Reach",
|
||||
rating: 5,
|
||||
reviewCount: "2.3M impressions",
|
||||
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=2",
|
||||
imageAlt: "Luxury fashion brand social media campaign",
|
||||
},
|
||||
{
|
||||
@@ -286,7 +286,7 @@ export default function HomePage() {
|
||||
price: "+425% Engagement",
|
||||
rating: 5,
|
||||
reviewCount: "890K interactions",
|
||||
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=2",
|
||||
imageAlt: "Tech startup social media success",
|
||||
},
|
||||
{
|
||||
@@ -296,7 +296,7 @@ export default function HomePage() {
|
||||
price: "+520% Followers",
|
||||
rating: 5,
|
||||
reviewCount: "1.2M new followers",
|
||||
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=2",
|
||||
imageAlt: "Wellness brand lifestyle content",
|
||||
},
|
||||
]}
|
||||
@@ -321,7 +321,7 @@ export default function HomePage() {
|
||||
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=3",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -331,7 +331,7 @@ export default function HomePage() {
|
||||
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=3",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -341,7 +341,7 @@ export default function HomePage() {
|
||||
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=3",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
@@ -351,7 +351,7 @@ export default function HomePage() {
|
||||
quote: "Stellar Agency brought professionalism and strategic thinking to our social media. We saw tangible results in lead generation and brand awareness. Their reporting and communication are top-notch.",
|
||||
tag: "Real Estate",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/handsome-bearded-african-american-businessman-brown-classic-jacket-isolated-dark-background_613910-6597.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=4",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
@@ -361,7 +361,7 @@ export default function HomePage() {
|
||||
quote: "The creativity and dedication of the Stellar Agency team is unmatched. They've created content that resonates with our audience and drives real business results. I couldn't ask for a better partner.",
|
||||
tag: "Fitness & Wellness",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/empowered-business-woman-working-city_23-2149322942.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=4",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
@@ -371,7 +371,7 @@ export default function HomePage() {
|
||||
quote: "Stellar Agency elevated our restaurant group's social media presence to new heights. Their content strategy and community engagement have made us the talk of the industry. Exceptional work!",
|
||||
tag: "Food & Beverage",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.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=4",
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
|
||||
@@ -86,7 +86,7 @@ export default function PortfolioPage() {
|
||||
rating: 5,
|
||||
reviewCount: "2.3M impressions",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/seductive-lady-pink-silk-robe-holds-champagne-flute_8353-90.jpg",
|
||||
"http://img.b2bpic.net/free-photo/seductive-lady-pink-silk-robe-holds-champagne-flute_8353-90.jpg?_wi=7",
|
||||
imageAlt: "Luxury fashion brand social media campaign",
|
||||
},
|
||||
{
|
||||
@@ -97,7 +97,7 @@ export default function PortfolioPage() {
|
||||
rating: 5,
|
||||
reviewCount: "890K interactions",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-psd/software-engineering-instagram-template-design_23-2151848828.jpg",
|
||||
"http://img.b2bpic.net/free-psd/software-engineering-instagram-template-design_23-2151848828.jpg?_wi=7",
|
||||
imageAlt: "Tech startup social media success",
|
||||
},
|
||||
{
|
||||
@@ -108,7 +108,7 @@ export default function PortfolioPage() {
|
||||
rating: 5,
|
||||
reviewCount: "1.2M new followers",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-psd/natural-hair-haircare-instagram-posts-collection_23-2149954197.jpg",
|
||||
"http://img.b2bpic.net/free-psd/natural-hair-haircare-instagram-posts-collection_23-2149954197.jpg?_wi=7",
|
||||
imageAlt: "Wellness brand lifestyle content",
|
||||
},
|
||||
]}
|
||||
@@ -136,7 +136,7 @@ export default function PortfolioPage() {
|
||||
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",
|
||||
"http://img.b2bpic.net/free-photo/seductive-lady-pink-silk-robe-holds-champagne-flute_8353-90.jpg?_wi=8",
|
||||
avatarAlt: "Sarah Mitchell headshot",
|
||||
imageAlt: "Fashion campaign showcase",
|
||||
},
|
||||
@@ -151,7 +151,7 @@ export default function PortfolioPage() {
|
||||
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",
|
||||
"http://img.b2bpic.net/free-psd/software-engineering-instagram-template-design_23-2151848828.jpg?_wi=8",
|
||||
avatarAlt: "Marcus Chen headshot",
|
||||
imageAlt: "Tech campaign showcase",
|
||||
},
|
||||
@@ -166,7 +166,7 @@ export default function PortfolioPage() {
|
||||
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",
|
||||
"http://img.b2bpic.net/free-psd/natural-hair-haircare-instagram-posts-collection_23-2149954197.jpg?_wi=8",
|
||||
avatarAlt: "Jessica Rodriguez headshot",
|
||||
imageAlt: "Beauty campaign showcase",
|
||||
},
|
||||
|
||||
@@ -85,12 +85,12 @@ export default function ServicesPage() {
|
||||
"We develop customized social media strategies tailored to your brand's unique goals, audience, and market position. Our data-driven approach ensures maximum ROI.",
|
||||
phoneOne: {
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/marketing-project-timeline-template_742173-20679.jpg",
|
||||
"http://img.b2bpic.net/free-vector/marketing-project-timeline-template_742173-20679.jpg?_wi=2",
|
||||
imageAlt: "social media strategy planning analytics dashboard",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/rising-business-growth-chart_1308-170777.jpg",
|
||||
"http://img.b2bpic.net/free-vector/rising-business-growth-chart_1308-170777.jpg?_wi=2",
|
||||
imageAlt: "business growth analytics upward trending metrics",
|
||||
},
|
||||
},
|
||||
@@ -101,12 +101,12 @@ export default function ServicesPage() {
|
||||
"From stunning visuals to compelling copy, we create engaging content that resonates with your audience and drives meaningful interactions across all platforms.",
|
||||
phoneOne: {
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/notepad-passport-pen-dslr-camera-wooden-background_23-2147837125.jpg",
|
||||
"http://img.b2bpic.net/free-photo/notepad-passport-pen-dslr-camera-wooden-background_23-2147837125.jpg?_wi=2",
|
||||
imageAlt: "content creation photography videography equipment",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/seductive-lady-pink-silk-robe-holds-champagne-flute_8353-90.jpg",
|
||||
"http://img.b2bpic.net/free-photo/seductive-lady-pink-silk-robe-holds-champagne-flute_8353-90.jpg?_wi=6",
|
||||
imageAlt: "luxury brand social media campaign aesthetic",
|
||||
},
|
||||
},
|
||||
@@ -117,13 +117,13 @@ export default function ServicesPage() {
|
||||
"We nurture your online communities, respond to customer inquiries, and foster authentic relationships with your followers to build lasting brand loyalty.",
|
||||
phoneOne: {
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/group-diverse-people-using-smartphones_53876-25043.jpg",
|
||||
"http://img.b2bpic.net/free-photo/group-diverse-people-using-smartphones_53876-25043.jpg?_wi=2",
|
||||
imageAlt:
|
||||
"community management social media engagement metrics",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-psd/natural-hair-haircare-instagram-posts-collection_23-2149954197.jpg",
|
||||
"http://img.b2bpic.net/free-psd/natural-hair-haircare-instagram-posts-collection_23-2149954197.jpg?_wi=6",
|
||||
imageAlt: "lifestyle brand social media marketing aesthetic",
|
||||
},
|
||||
},
|
||||
@@ -134,13 +134,13 @@ export default function ServicesPage() {
|
||||
"Strategic paid social campaigns that reach your target audience, maximize conversions, and deliver impressive ROI across Facebook, Instagram, TikTok, and LinkedIn.",
|
||||
phoneOne: {
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/business-person-looking-finance-graphs_23-2150461354.jpg",
|
||||
"http://img.b2bpic.net/free-photo/business-person-looking-finance-graphs_23-2150461354.jpg?_wi=2",
|
||||
imageAlt:
|
||||
"social media advertising campaign targeting optimization",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-psd/software-engineering-instagram-template-design_23-2151848828.jpg",
|
||||
"http://img.b2bpic.net/free-psd/software-engineering-instagram-template-design_23-2151848828.jpg?_wi=6",
|
||||
imageAlt: "tech startup social media branding campaign",
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user