Merge version_1 into main #1
@@ -65,42 +65,42 @@ export default function AboutPage() {
|
||||
id: "1",
|
||||
name: "Alexandra Reed",
|
||||
role: "Creative Director",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg?_wi=2",
|
||||
imageAlt: "Alexandra Reed, Creative Director"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Marcus Chen",
|
||||
role: "Strategy Lead",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/content-indian-ceo-standing-smiling-portrait-successful-pensive-bearded-businessman-glasses-posing-office-room-business-expression-management-concept_74855-11642.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/content-indian-ceo-standing-smiling-portrait-successful-pensive-bearded-businessman-glasses-posing-office-room-business-expression-management-concept_74855-11642.jpg?_wi=2",
|
||||
imageAlt: "Marcus Chen, Strategy Lead"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Sophia Martinez",
|
||||
role: "Content Strategist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-beautiful-strict-woman-glasses_1262-1732.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-beautiful-strict-woman-glasses_1262-1732.jpg?_wi=2",
|
||||
imageAlt: "Sophia Martinez, Content Strategist"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "James Williams",
|
||||
role: "Performance Analyst",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-businessman-entrepreneur-sitting-workspace-looking-camera_482257-8143.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-businessman-entrepreneur-sitting-workspace-looking-camera_482257-8143.jpg?_wi=2",
|
||||
imageAlt: "James Williams, Performance Analyst"
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Emma Thompson",
|
||||
role: "Community Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-posing-meeting-indoors_23-2148824910.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-posing-meeting-indoors_23-2148824910.jpg?_wi=2",
|
||||
imageAlt: "Emma Thompson, Community Manager"
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Lucas Santos",
|
||||
role: "Video Producer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/freaky-guy-sunglasses-white-shirt-holds-film-camera-grey-background_613910-9405.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/freaky-guy-sunglasses-white-shirt-holds-film-camera-grey-background_613910-9405.jpg?_wi=2",
|
||||
imageAlt: "Lucas Santos, Video Producer"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -81,7 +81,7 @@ export default function ContactPage() {
|
||||
"We offer flexible terms starting with 3-month retainers for ongoing management. Custom packages are available based on your specific needs and budget.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-young-colleagues-sitting-office-coworking_171337-17658.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-young-colleagues-sitting-office-coworking_171337-17658.jpg?_wi=2"
|
||||
imageAlt="team collaboration brainstorm meeting workspace"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -109,7 +109,7 @@ export default function ContactPage() {
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-people-working-together_23-2149411520.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-people-working-together_23-2149411520.jpg?_wi=3"
|
||||
imageAlt="professional team consultation meeting discussion"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -1,18 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Lato } 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 { Lato } 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 lato = Lato({
|
||||
variable: "--font-lato",
|
||||
@@ -20,6 +24,36 @@ const lato = Lato({
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Premium Social Media Agency | SocialElevate",
|
||||
description: "Transform your brand with strategic social media management, expert content creation, and proven results. Trusted by 150+ premium brands.",
|
||||
keywords: "social media agency, social media management, social media marketing, content creation, brand strategy, digital marketing, social media services",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Premium Social Media Agency | SocialElevate",
|
||||
description: "Strategic social media solutions for premium brands. Content creation, community management, and paid advertising.",
|
||||
type: "website",
|
||||
siteName: "SocialElevate",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/portrait-positive-woman-black-shirt-posing-white-background-high-quality-photo_114579-61008.jpg",
|
||||
alt: "SocialElevate - Transform Your Brand",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Premium Social Media Agency | SocialElevate",
|
||||
description: "Strategic social media solutions for premium brands.",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/portrait-positive-woman-black-shirt-posing-white-background-high-quality-photo_114579-61008.jpg",
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -28,7 +62,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${lato.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +76,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -93,7 +93,7 @@ export default function HomePage() {
|
||||
author: "Strategy Team",
|
||||
description: "We develop customized strategies aligned with your business goals, managing all platforms with consistency and purpose to build meaningful engagement.",
|
||||
tags: ["Strategy", "Management"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/team-diverse-startup-company-colleague-entrepreneur-meeting-professional-workplace-broadroom_482257-5082.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/team-diverse-startup-company-colleague-entrepreneur-meeting-professional-workplace-broadroom_482257-5082.jpg?_wi=1",
|
||||
imageAlt: "Strategic social media planning"
|
||||
},
|
||||
{
|
||||
@@ -102,7 +102,7 @@ export default function HomePage() {
|
||||
author: "Creative Studio",
|
||||
description: "Our team produces compelling, on-brand content including graphics, videos, and copy that resonates with your audience and drives conversions.",
|
||||
tags: ["Content", "Creative"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-colorful-paint-desk-concept_23-2148697057.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-colorful-paint-desk-concept_23-2148697057.jpg?_wi=1",
|
||||
imageAlt: "Content creation process"
|
||||
},
|
||||
{
|
||||
@@ -111,7 +111,7 @@ export default function HomePage() {
|
||||
author: "Community Team",
|
||||
description: "We foster genuine connections by managing interactions, responding to comments, and building loyal communities around your brand.",
|
||||
tags: ["Community", "Engagement"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-having-coffee-break_53876-30761.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-having-coffee-break_53876-30761.jpg?_wi=1",
|
||||
imageAlt: "Community engagement"
|
||||
},
|
||||
{
|
||||
@@ -120,7 +120,7 @@ export default function HomePage() {
|
||||
author: "Performance Team",
|
||||
description: "Strategic ad campaigns optimized for ROI across Facebook, Instagram, TikTok, and LinkedIn to reach your ideal customers with precision.",
|
||||
tags: ["Advertising", "Performance"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handicapped-invalid-man-employee-sitting-immobilized-wheelchair-working-notepad-computer-same-time-analysing-financial-graphs-pc-showing-data-prosessing-project-regarding-economy_482257-30902.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handicapped-invalid-man-employee-sitting-immobilized-wheelchair-working-notepad-computer-same-time-analysing-financial-graphs-pc-showing-data-prosessing-project-regarding-economy_482257-30902.jpg?_wi=1",
|
||||
imageAlt: "Paid social campaigns"
|
||||
}
|
||||
]}
|
||||
@@ -142,28 +142,28 @@ export default function HomePage() {
|
||||
id: "1",
|
||||
name: "Tech Startup Growth Campaign",
|
||||
price: "+340% Engagement",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/office-workers-glass_1170-81.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/office-workers-glass_1170-81.jpg?_wi=1",
|
||||
imageAlt: "Tech startup social growth"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Luxury Brand Rebranding",
|
||||
price: "+520% Reach",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/another-person-walks-young-beautiful-girl-warm-clothes-have-walk-city-her-weekends-time_146671-16840.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/another-person-walks-young-beautiful-girl-warm-clothes-have-walk-city-her-weekends-time_146671-16840.jpg?_wi=1",
|
||||
imageAlt: "Luxury brand rebranding results"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "E-commerce Launch Strategy",
|
||||
price: "+890% Sales",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/shopping-from-desktop-mobile-phone-landing-page_23-2148517509.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/shopping-from-desktop-mobile-phone-landing-page_23-2148517509.jpg?_wi=1",
|
||||
imageAlt: "E-commerce campaign success"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Non-profit Awareness Campaign",
|
||||
price: "+275% Donations",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-people-putting-their-hands-together_23-2148212364.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-people-putting-their-hands-together_23-2148212364.jpg?_wi=1",
|
||||
imageAlt: "Non-profit campaign impact"
|
||||
}
|
||||
]}
|
||||
@@ -205,42 +205,42 @@ export default function HomePage() {
|
||||
id: "1",
|
||||
name: "Alexandra Reed",
|
||||
role: "Creative Director",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg?_wi=1",
|
||||
imageAlt: "Alexandra Reed, Creative Director"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Marcus Chen",
|
||||
role: "Strategy Lead",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/content-indian-ceo-standing-smiling-portrait-successful-pensive-bearded-businessman-glasses-posing-office-room-business-expression-management-concept_74855-11642.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/content-indian-ceo-standing-smiling-portrait-successful-pensive-bearded-businessman-glasses-posing-office-room-business-expression-management-concept_74855-11642.jpg?_wi=1",
|
||||
imageAlt: "Marcus Chen, Strategy Lead"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Sophia Martinez",
|
||||
role: "Content Strategist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-beautiful-strict-woman-glasses_1262-1732.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-beautiful-strict-woman-glasses_1262-1732.jpg?_wi=1",
|
||||
imageAlt: "Sophia Martinez, Content Strategist"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "James Williams",
|
||||
role: "Performance Analyst",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-businessman-entrepreneur-sitting-workspace-looking-camera_482257-8143.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-businessman-entrepreneur-sitting-workspace-looking-camera_482257-8143.jpg?_wi=1",
|
||||
imageAlt: "James Williams, Performance Analyst"
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Emma Thompson",
|
||||
role: "Community Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-posing-meeting-indoors_23-2148824910.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-posing-meeting-indoors_23-2148824910.jpg?_wi=1",
|
||||
imageAlt: "Emma Thompson, Community Manager"
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Lucas Santos",
|
||||
role: "Video Producer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/freaky-guy-sunglasses-white-shirt-holds-film-camera-grey-background_613910-9405.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/freaky-guy-sunglasses-white-shirt-holds-film-camera-grey-background_613910-9405.jpg?_wi=1",
|
||||
imageAlt: "Lucas Santos, Video Producer"
|
||||
}
|
||||
]}
|
||||
@@ -265,7 +265,7 @@ export default function HomePage() {
|
||||
role: "CEO",
|
||||
company: "Growth Tech Ventures",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-senior-woman-posing-inside-medium-shot_23-2149833721.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-senior-woman-posing-inside-medium-shot_23-2149833721.jpg?_wi=1",
|
||||
imageAlt: "Rachel Thompson, CEO"
|
||||
},
|
||||
{
|
||||
@@ -274,7 +274,7 @@ export default function HomePage() {
|
||||
role: "Marketing Director",
|
||||
company: "Luxury Brands Co",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-with-blue-shirt_23-2148548056.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-with-blue-shirt_23-2148548056.jpg?_wi=1",
|
||||
imageAlt: "David Kumar, Marketing Director"
|
||||
},
|
||||
{
|
||||
@@ -283,7 +283,7 @@ export default function HomePage() {
|
||||
role: "Founder",
|
||||
company: "E-commerce Collective",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ambitious-businesswoman-with-arms-crossed-looking-forward-future_1163-4333.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ambitious-businesswoman-with-arms-crossed-looking-forward-future_1163-4333.jpg?_wi=1",
|
||||
imageAlt: "Isabella Santos, Founder"
|
||||
},
|
||||
{
|
||||
@@ -292,7 +292,7 @@ export default function HomePage() {
|
||||
role: "Brand Manager",
|
||||
company: "Global Fashion House",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-length-portrait-confident-mature-businessman-formals-standing-isolated-white-background_613910-10628.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-length-portrait-confident-mature-businessman-formals-standing-isolated-white-background_613910-10628.jpg?_wi=1",
|
||||
imageAlt: "Michael Wong, Brand Manager"
|
||||
},
|
||||
{
|
||||
@@ -301,7 +301,7 @@ export default function HomePage() {
|
||||
role: "Head of Marketing",
|
||||
company: "Wellness & Lifestyle",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-business-woman-office-isolated_1303-21402.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-business-woman-office-isolated_1303-21402.jpg?_wi=1",
|
||||
imageAlt: "Sarah Anderson, Head of Marketing"
|
||||
},
|
||||
{
|
||||
@@ -310,7 +310,7 @@ export default function HomePage() {
|
||||
role: "Executive Director",
|
||||
company: "Social Impact Non-profit",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg?_wi=1",
|
||||
imageAlt: "James Liu, Executive Director"
|
||||
}
|
||||
]}
|
||||
@@ -360,7 +360,7 @@ export default function HomePage() {
|
||||
content: "We offer flexible terms starting with 3-month retainers for ongoing management. Custom packages are available based on your specific needs and budget."
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-young-colleagues-sitting-office-coworking_171337-17658.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-young-colleagues-sitting-office-coworking_171337-17658.jpg?_wi=1"
|
||||
imageAlt="Team collaboration brainstorm meeting workspace"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -380,7 +380,7 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-people-working-together_23-2149411520.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-people-working-together_23-2149411520.jpg?_wi=1"
|
||||
imageAlt="Professional team consultation meeting discussion"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -48,28 +48,28 @@ export default function PortfolioPage() {
|
||||
id: "1",
|
||||
name: "Tech Startup Growth Campaign",
|
||||
price: "+340% Engagement",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/office-workers-glass_1170-81.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/office-workers-glass_1170-81.jpg?_wi=2",
|
||||
imageAlt: "Tech startup social growth"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Luxury Brand Rebranding",
|
||||
price: "+520% Reach",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/another-person-walks-young-beautiful-girl-warm-clothes-have-walk-city-her-weekends-time_146671-16840.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/another-person-walks-young-beautiful-girl-warm-clothes-have-walk-city-her-weekends-time_146671-16840.jpg?_wi=2",
|
||||
imageAlt: "Luxury brand rebranding results"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "E-commerce Launch Strategy",
|
||||
price: "+890% Sales",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/shopping-from-desktop-mobile-phone-landing-page_23-2148517509.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/shopping-from-desktop-mobile-phone-landing-page_23-2148517509.jpg?_wi=2",
|
||||
imageAlt: "E-commerce campaign success"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Non-profit Awareness Campaign",
|
||||
price: "+275% Donations",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-people-putting-their-hands-together_23-2148212364.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-people-putting-their-hands-together_23-2148212364.jpg?_wi=2",
|
||||
imageAlt: "Non-profit campaign impact"
|
||||
}
|
||||
]}
|
||||
@@ -94,7 +94,7 @@ export default function PortfolioPage() {
|
||||
role: "CEO",
|
||||
company: "Growth Tech Ventures",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-senior-woman-posing-inside-medium-shot_23-2149833721.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-senior-woman-posing-inside-medium-shot_23-2149833721.jpg?_wi=2",
|
||||
imageAlt: "Rachel Thompson, CEO"
|
||||
},
|
||||
{
|
||||
@@ -103,7 +103,7 @@ export default function PortfolioPage() {
|
||||
role: "Marketing Director",
|
||||
company: "Luxury Brands Co",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-with-blue-shirt_23-2148548056.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-with-blue-shirt_23-2148548056.jpg?_wi=2",
|
||||
imageAlt: "David Kumar, Marketing Director"
|
||||
},
|
||||
{
|
||||
@@ -112,7 +112,7 @@ export default function PortfolioPage() {
|
||||
role: "Founder",
|
||||
company: "E-commerce Collective",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ambitious-businesswoman-with-arms-crossed-looking-forward-future_1163-4333.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ambitious-businesswoman-with-arms-crossed-looking-forward-future_1163-4333.jpg?_wi=2",
|
||||
imageAlt: "Isabella Santos, Founder"
|
||||
},
|
||||
{
|
||||
@@ -121,7 +121,7 @@ export default function PortfolioPage() {
|
||||
role: "Brand Manager",
|
||||
company: "Global Fashion House",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-length-portrait-confident-mature-businessman-formals-standing-isolated-white-background_613910-10628.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-length-portrait-confident-mature-businessman-formals-standing-isolated-white-background_613910-10628.jpg?_wi=2",
|
||||
imageAlt: "Michael Wong, Brand Manager"
|
||||
},
|
||||
{
|
||||
@@ -130,7 +130,7 @@ export default function PortfolioPage() {
|
||||
role: "Head of Marketing",
|
||||
company: "Wellness & Lifestyle",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-business-woman-office-isolated_1303-21402.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-business-woman-office-isolated_1303-21402.jpg?_wi=2",
|
||||
imageAlt: "Sarah Anderson, Head of Marketing"
|
||||
},
|
||||
{
|
||||
@@ -139,7 +139,7 @@ export default function PortfolioPage() {
|
||||
role: "Executive Director",
|
||||
company: "Social Impact Non-profit",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg?_wi=2",
|
||||
imageAlt: "James Liu, Executive Director"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -86,7 +86,7 @@ export default function ServicesPage() {
|
||||
author: "Strategy Team",
|
||||
description: "We develop customized strategies aligned with your business goals, managing all platforms with consistency and purpose to build meaningful engagement. From platform selection to content calendars, we ensure every post serves your larger vision.",
|
||||
tags: ["Strategy", "Management", "Planning"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/team-diverse-startup-company-colleague-entrepreneur-meeting-professional-workplace-broadroom_482257-5082.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/team-diverse-startup-company-colleague-entrepreneur-meeting-professional-workplace-broadroom_482257-5082.jpg?_wi=2",
|
||||
imageAlt: "strategic planning brainstorm meeting workspace",
|
||||
},
|
||||
{
|
||||
@@ -95,7 +95,7 @@ export default function ServicesPage() {
|
||||
author: "Creative Studio",
|
||||
description: "Our team produces compelling, on-brand content including graphics, videos, and copy that resonates with your audience and drives conversions. We blend storytelling with strategic messaging to create content that educates, entertains, and converts.",
|
||||
tags: ["Content", "Creative", "Production"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-colorful-paint-desk-concept_23-2148697057.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-colorful-paint-desk-concept_23-2148697057.jpg?_wi=2",
|
||||
imageAlt: "creative content studio production setup",
|
||||
},
|
||||
{
|
||||
@@ -104,7 +104,7 @@ export default function ServicesPage() {
|
||||
author: "Community Team",
|
||||
description: "We foster genuine connections by managing interactions, responding to comments, and building loyal communities around your brand. Our team monitors conversations, engages authentically, and cultivates brand advocates.",
|
||||
tags: ["Community", "Engagement", "Relationships"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-having-coffee-break_53876-30761.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-having-coffee-break_53876-30761.jpg?_wi=2",
|
||||
imageAlt: "community engagement social media interaction",
|
||||
},
|
||||
{
|
||||
@@ -113,7 +113,7 @@ export default function ServicesPage() {
|
||||
author: "Performance Team",
|
||||
description: "Strategic ad campaigns optimized for ROI across Facebook, Instagram, TikTok, and LinkedIn to reach your ideal customers with precision. We handle targeting, creative optimization, and continuous performance analysis.",
|
||||
tags: ["Advertising", "Performance", "Analytics"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handicapped-invalid-man-employee-sitting-immobilized-wheelchair-working-notepad-computer-same-time-analysing-financial-graphs-pc-showing-data-prosessing-project-regarding-economy_482257-30902.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handicapped-invalid-man-employee-sitting-immobilized-wheelchair-working-notepad-computer-same-time-analysing-financial-graphs-pc-showing-data-prosessing-project-regarding-economy_482257-30902.jpg?_wi=2",
|
||||
imageAlt: "paid advertising campaign dashboard analytics",
|
||||
},
|
||||
]}
|
||||
@@ -171,7 +171,7 @@ export default function ServicesPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-people-working-together_23-2149411520.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-people-working-together_23-2149411520.jpg?_wi=2"
|
||||
imageAlt="professional team consultation meeting discussion"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user