Merge version_2 into main #4
@@ -1,80 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Social Elevation - Premium Social Media Agency",
|
||||
description: "Transform your brand with data-driven social media strategies. 200+ brands trust us for content creation, community management, and paid advertising.",
|
||||
keywords: "social media agency, social media marketing, content creation, digital marketing, social strategy",
|
||||
metadataBase: new URL("https://socialelevation.com"),
|
||||
alternates: {
|
||||
canonical: "https://socialelevation.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Social Elevation - Premium Social Media Agency",
|
||||
description: "Elevate your brand's social presence. We craft compelling narratives that drive measurable results across all platforms.",
|
||||
url: "https://socialelevation.com",
|
||||
siteName: "Social Elevation",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/crop-coworkers-using-modern-devices-desk_23-2147787547.jpg",
|
||||
alt: "Social Elevation - Premium Social Media Services",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Social Elevation - Premium Social Media Agency",
|
||||
description: "Transform your brand with data-driven social media strategies and creative excellence.",
|
||||
images: ["http://img.b2bpic.net/free-photo/crop-coworkers-using-modern-devices-desk_23-2147787547.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Social Elevation", description: "Transform your brand's social presence with data-driven strategies and creative excellence"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1442,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -81,7 +81,8 @@ export default function HomePage() {
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Strategy & Planning", description: "We develop custom social media strategies aligned with your business goals, audience insights, and competitive landscape. Our data-driven approach ensures every post drives meaningful engagement and conversions.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/multi-ethnic-business-team-sitting-table-office-center-speaking-about-project-meeting-broadroom_482257-5077.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/multi-ethnic-business-team-sitting-table-office-center-speaking-about-project-meeting-broadroom_482257-5077.jpg"
|
||||
},
|
||||
items: [
|
||||
{ icon: "Target" as unknown as any, text: "Audience Research & Segmentation" },
|
||||
{ icon: "BarChart3" as unknown as any, text: "Performance Analytics" },
|
||||
@@ -91,7 +92,8 @@ export default function HomePage() {
|
||||
},
|
||||
{
|
||||
id: "2", title: "Content Creation & Production", description: "From stunning visuals to viral-worthy video content, our creative team produces premium content that stops scrolls and sparks conversations. We handle everything from concept to final delivery.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-photographer-shooting-young-woman_1268-21886.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-photographer-shooting-young-woman_1268-21886.jpg"
|
||||
},
|
||||
items: [
|
||||
{ icon: "Camera" as unknown as any, text: "Professional Photography & Videography" },
|
||||
{ icon: "Palette" as unknown as any, text: "Graphic Design & Animation" },
|
||||
@@ -101,7 +103,8 @@ export default function HomePage() {
|
||||
},
|
||||
{
|
||||
id: "3", title: "Community Management & Engagement", description: "We build loyal communities around your brand through authentic engagement, timely responses, and meaningful conversations. Our team monitors your accounts 24/7 to ensure maximum visibility and brand affinity.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/social-network-design_24877-49585.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/social-network-design_24877-49585.jpg"
|
||||
},
|
||||
items: [
|
||||
{ icon: "MessageCircle" as unknown as any, text: "Real-Time Engagement" },
|
||||
{ icon: "Users" as unknown as any, text: "Community Building" },
|
||||
@@ -111,7 +114,8 @@ export default function HomePage() {
|
||||
},
|
||||
{
|
||||
id: "4", title: "Paid Social Advertising", description: "Maximize ROI with our expert paid social campaigns. We optimize every dollar spent across Meta, TikTok, LinkedIn, and Pinterest using advanced targeting and creative testing.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/online-marketing-commercial-connection-technology_53876-132688.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/online-marketing-commercial-connection-technology_53876-132688.jpg"
|
||||
},
|
||||
items: [
|
||||
{ icon: "TrendingUp" as unknown as any, text: "Campaign Optimization" },
|
||||
{ icon: "Zap" as unknown as any, text: "Conversion Tracking" },
|
||||
@@ -140,22 +144,28 @@ export default function HomePage() {
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Victoria Sterling", role: "CMO", company: "Sterling Fashion Co.", rating: 5,
|
||||
imageSrc: "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", imageAlt: "Victoria Sterling testimonial"},
|
||||
imageSrc: "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", imageAlt: "Victoria Sterling testimonial"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Robert Hayes", role: "Founder", company: "TechFlow Solutions", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/inspiring-new-boss_1098-93.jpg", imageAlt: "Robert Hayes testimonial"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/inspiring-new-boss_1098-93.jpg", imageAlt: "Robert Hayes testimonial"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Nina Kapoor", role: "Marketing Director", company: "Urban Eats Restaurant", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-working-business-with-computer_482257-20185.jpg", imageAlt: "Nina Kapoor testimonial"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-working-business-with-computer_482257-20185.jpg", imageAlt: "Nina Kapoor testimonial"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Jordan Mitchell", role: "Brand Owner", company: "Wellness & Co.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-cafe_1098-13701.jpg", imageAlt: "Jordan Mitchell testimonial"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-cafe_1098-13701.jpg", imageAlt: "Jordan Mitchell testimonial"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Amelia Park", role: "CEO", company: "Global Beauty Inc.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-senior-businesswoman-eyeglasses_1262-5856.jpg", imageAlt: "Amelia Park testimonial"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-senior-businesswoman-eyeglasses_1262-5856.jpg", imageAlt: "Amelia Park testimonial"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Christopher Blake", role: "Operations Manager", company: "BlueSky Ventures", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-successful-businessman-smiling-posing-office_176420-911.jpg", imageAlt: "Christopher Blake testimonial"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-successful-businessman-smiling-posing-office_176420-911.jpg", imageAlt: "Christopher Blake testimonial"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -178,7 +188,8 @@ export default function HomePage() {
|
||||
{ text: "Learn More", href: "#pricing" },
|
||||
],
|
||||
features: [
|
||||
"2-3 Content pieces per week", "Social Media Management", "Basic Analytics & Reporting", "Community Engagement", "Monthly Strategy Review"],
|
||||
"2-3 Content pieces per week", "Social Media Management", "Basic Analytics & Reporting", "Community Engagement", "Monthly Strategy Review"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "professional", badge: "Professional", badgeIcon: Star,
|
||||
@@ -187,8 +198,9 @@ export default function HomePage() {
|
||||
{ text: "Learn More", href: "#pricing" },
|
||||
],
|
||||
features: [
|
||||
"5-7 Content pieces per week", "Full Social Media Management", "Advanced Analytics & Insights", "Influencer Outreach", "Paid Social Campaigns ($500-1K budget)", "Bi-weekly Strategy Calls"],
|
||||
},
|
||||
"5-7 Content pieces per week", "Full Social Media Management", "Advanced Analytics & Insights", "Influencer Outreach", "Paid Social Campaigns ($500-1K budget)", "Bi-weekly Strategy Calls"
|
||||
],
|
||||
badgeClassName: "ring-2 ring-offset-2 ring-yellow-400 scale-110 shadow-lg"},
|
||||
{
|
||||
id: "premium", badge: "Premium", badgeIcon: Crown,
|
||||
price: "$10,000+/mo", subtitle: "For brands demanding excellence", buttons: [
|
||||
@@ -196,7 +208,8 @@ export default function HomePage() {
|
||||
{ text: "Learn More", href: "#pricing" },
|
||||
],
|
||||
features: [
|
||||
"Daily Content Creation & Posting", "24/7 Community Management", "Custom Video Production", "Comprehensive Paid Social Campaigns", "Influencer Partnership Management", "Dedicated Account Team", "Weekly Strategic Reviews", "Crisis Management Support"],
|
||||
"Daily Content Creation & Posting", "24/7 Community Management", "Custom Video Production", "Comprehensive Paid Social Campaigns", "Influencer Partnership Management", "Dedicated Account Team", "Weekly Strategic Reviews", "Crisis Management Support"
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -214,15 +227,20 @@ export default function HomePage() {
|
||||
carouselMode="buttons"
|
||||
blogs={[
|
||||
{
|
||||
id: "1", category: "E-Commerce", title: "Luxury Fashion Brand Growth", excerpt: "Increased Instagram followers from 50K to 500K in 12 months through strategic content and influencer partnerships", imageSrc: "http://img.b2bpic.net/free-photo/pretty-blonde-woman-with-wavy-hair-dressed-skirt-light-blouse-white-jacket-sits-chair_197531-33594.jpg", imageAlt: "Luxury fashion brand case study", authorName: "Sarah Mitchell", authorAvatar: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg", date: "March 2024"},
|
||||
id: "1", category: "E-Commerce", title: "Luxury Fashion Brand Growth", excerpt: "Increased Instagram followers from 50K to 500K in 12 months through strategic content and influencer partnerships", imageSrc: "http://img.b2bpic.net/free-photo/pretty-blonde-woman-with-wavy-hair-dressed-skirt-light-blouse-white-jacket-sits-chair_197531-33594.jpg", imageAlt: "Luxury fashion brand case study", authorName: "Sarah Mitchell", authorAvatar: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg", date: "March 2024"
|
||||
},
|
||||
{
|
||||
id: "2", category: "SaaS", title: "B2B Tech Company Launch", excerpt: "Launched LinkedIn thought leadership campaign generating 2M+ impressions and 500+ qualified leads in Q1", imageSrc: "http://img.b2bpic.net/free-vector/modern-business-infographic-template_23-2148446318.jpg", imageAlt: "SaaS company LinkedIn campaign", authorName: "James Chen", authorAvatar: "http://img.b2bpic.net/free-photo/handsome-groom-classy-black-suit-stands-dark-room_8353-7083.jpg", date: "February 2024"},
|
||||
id: "2", category: "SaaS", title: "B2B Tech Company Launch", excerpt: "Launched LinkedIn thought leadership campaign generating 2M+ impressions and 500+ qualified leads in Q1", imageSrc: "http://img.b2bpic.net/free-vector/modern-business-infographic-template_23-2148446318.jpg", imageAlt: "SaaS company LinkedIn campaign", authorName: "James Chen", authorAvatar: "http://img.b2bpic.net/free-photo/handsome-groom-classy-black-suit-stands-dark-room_8353-7083.jpg", date: "February 2024"
|
||||
},
|
||||
{
|
||||
id: "3", category: "Food & Beverage", title: "Restaurant Chain Viral Campaign", excerpt: "Created TikTok viral campaign reaching 50M views and driving 200% increase in foot traffic", imageSrc: "http://img.b2bpic.net/free-photo/side-view-table-with-cheese-plate-pate-it_140725-12866.jpg", imageAlt: "Restaurant TikTok viral campaign", authorName: "Emma Rodriguez", authorAvatar: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg", date: "January 2024"},
|
||||
id: "3", category: "Food & Beverage", title: "Restaurant Chain Viral Campaign", excerpt: "Created TikTok viral campaign reaching 50M views and driving 200% increase in foot traffic", imageSrc: "http://img.b2bpic.net/free-photo/side-view-table-with-cheese-plate-pate-it_140725-12866.jpg", imageAlt: "Restaurant TikTok viral campaign", authorName: "Emma Rodriguez", authorAvatar: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg", date: "January 2024"
|
||||
},
|
||||
{
|
||||
id: "4", category: "Fitness", title: "Personal Training Brand Scaling", excerpt: "Grew Instagram community to 100K followers with 15% engagement rate through strategic storytelling", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-with-dumbbells-two-fitness-girls-sportswear-doing-lunges-with-dumbbells-modern-gym-health-diet-sport_613910-20774.jpg", imageAlt: "Fitness brand Instagram growth", authorName: "Marcus Johnson", authorAvatar: "http://img.b2bpic.net/free-photo/handsome-groom-classy-black-suit-stands-dark-room_8353-7083.jpg", date: "December 2023"},
|
||||
id: "4", category: "Fitness", title: "Personal Training Brand Scaling", excerpt: "Grew Instagram community to 100K followers with 15% engagement rate through strategic storytelling", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-with-dumbbells-two-fitness-girls-sportswear-doing-lunges-with-dumbbells-modern-gym-health-diet-sport_613910-20774.jpg", imageAlt: "Fitness brand Instagram growth", authorName: "Marcus Johnson", authorAvatar: "http://img.b2bpic.net/free-photo/handsome-groom-classy-black-suit-stands-dark-room_8353-7083.jpg", date: "December 2023"
|
||||
},
|
||||
{
|
||||
id: "5", category: "Beauty", title: "Cosmetics Brand Influencer Network", excerpt: "Built influencer network generating 5M+ monthly impressions and 25% conversion rate increase", imageSrc: "http://img.b2bpic.net/free-photo/online-workshop-demontration-beauty-products_259150-60056.jpg", imageAlt: "Beauty brand influencer campaign", authorName: "Jessica Lee", authorAvatar: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg", date: "November 2023"},
|
||||
id: "5", category: "Beauty", title: "Cosmetics Brand Influencer Network", excerpt: "Built influencer network generating 5M+ monthly impressions and 25% conversion rate increase", imageSrc: "http://img.b2bpic.net/free-photo/online-workshop-demontration-beauty-products_259150-60056.jpg", imageAlt: "Beauty brand influencer campaign", authorName: "Jessica Lee", authorAvatar: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg", date: "November 2023"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -315,4 +333,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user