Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 03:29:45 +00:00
2 changed files with 10 additions and 36 deletions

View File

@@ -1,45 +1,20 @@
import type { Metadata } from "next";
import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Social Media Management Services | SocialFlow", description: "Transform your brand with expert social media management. Strategic content, community building, and data-driven growth.", keywords: "social media management, content creation, social media strategy, community management, digital marketing", openGraph: {
title: "Social Media Management Services | SocialFlow", description: "Transform your brand with expert social media management. Strategic content, community building, and data-driven growth.", siteName: "SocialFlow", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/businesswoman-working-laptop_53876-163211.jpg", alt: "SocialFlow - Social Media Management"},
],
},
twitter: {
card: "summary_large_image", title: "Social Media Management Services | SocialFlow", description: "Transform your brand with expert social media management. Strategic content, community building, and data-driven growth.", images: ["http://img.b2bpic.net/free-photo/businesswoman-working-laptop_53876-163211.jpg"],
},
};
title: "SocialFlow - Social Media Management", description: "Strategic social media management that drives engagement, builds community, and converts followers into loyal customers."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -115,19 +115,19 @@ export default function SocialFlowLanding() {
features={[
{
id: 1,
tag: "Strategy", title: "Social Strategy", subtitle: "Data-driven roadmap for your success.", description: "We develop comprehensive social media strategies that align with your business objectives, analyze competitor landscape, identify your target audience, and create a clear roadmap for growth and engagement across all platforms.", imageSrc: "http://img.b2bpic.net/free-photo/group-smiling-business-people-analyzing-reports-communicating-while-working-together-office-there-are-people-background_637285-170.jpg", imageAlt: "Strategy planning session", buttons: [{ text: "Learn More", href: "#" }],
tag: "Strategy", title: "Social Strategy", subtitle: "Data-driven roadmap for your success.", description: "We develop comprehensive social media strategies that align with your business objectives, analyze competitor landscape, identify your target audience, and create a clear roadmap for growth and engagement across all platforms.", imageSrc: "http://img.b2bpic.net/free-photo/group-smiling-business-people-analyzing-reports-communicating-while-working-together-office-there-are-people-background_637285-170.jpg", imageAlt: "Strategy planning session", buttons: [{ text: "Build Your Strategy", href: "#" }],
},
{
id: 2,
tag: "Creation", title: "Content Creation", subtitle: "Engaging content that resonates.", description: "Our creative team produces high-quality, on-brand content including graphics, videos, captions, and posts tailored to each platform. We ensure your message is compelling, consistent, and optimized for maximum engagement and shareability.", imageSrc: "http://img.b2bpic.net/free-photo/media-marketing-internet-digital-global_53876-138500.jpg", imageAlt: "Content creation design", buttons: [{ text: "Learn More", href: "#" }],
tag: "Creation", title: "Content Creation", subtitle: "Engaging content that resonates.", description: "Our creative team produces high-quality, on-brand content including graphics, videos, captions, and posts tailored to each platform. We ensure your message is compelling, consistent, and optimized for maximum engagement and shareability.", imageSrc: "http://img.b2bpic.net/free-photo/media-marketing-internet-digital-global_53876-138500.jpg", imageAlt: "Content creation design", buttons: [{ text: "See Content Examples", href: "#" }],
},
{
id: 3,
tag: "Analytics", title: "Performance Analytics", subtitle: "Insights that drive decisions.", description: "Detailed reporting and analytics to track your social media performance, measure ROI, understand audience behavior, and identify opportunities for optimization. We provide actionable insights to continuously improve your strategy.", imageSrc: "http://img.b2bpic.net/free-photo/data-analytics-dashboard_23-2152001529.jpg", imageAlt: "Analytics dashboard", buttons: [{ text: "Learn More", href: "#" }],
tag: "Analytics", title: "Performance Analytics", subtitle: "Insights that drive decisions.", description: "Detailed reporting and analytics to track your social media performance, measure ROI, understand audience behavior, and identify opportunities for optimization. We provide actionable insights to continuously improve your strategy.", imageSrc: "http://img.b2bpic.net/free-photo/data-analytics-dashboard_23-2152001529.jpg", imageAlt: "Analytics dashboard", buttons: [{ text: "View Analytics", href: "#" }],
},
{
id: 4,
tag: "Engagement", title: "Community Management", subtitle: "Building loyal communities.", description: "We manage all your community interactions, respond to comments and messages professionally, foster meaningful conversations, and build a loyal community around your brand that becomes your best advocates.", imageSrc: "http://img.b2bpic.net/free-photo/friends-hanging-out-with-each-other_53876-40981.jpg", imageAlt: "Community engagement", buttons: [{ text: "Learn More", href: "#" }],
tag: "Engagement", title: "Community Management", subtitle: "Building loyal communities.", description: "We manage all your community interactions, respond to comments and messages professionally, foster meaningful conversations, and build a loyal community around your brand that becomes your best advocates.", imageSrc: "http://img.b2bpic.net/free-photo/friends-hanging-out-with-each-other_53876-40981.jpg", imageAlt: "Community engagement", buttons: [{ text: "Grow Your Community", href: "#" }],
},
]}
buttons={[{ text: "Explore All Services", href: "#" }]}