'use client'; import { useState, useEffect } from 'react'; import Image from 'next/image'; import { Globe, Layers, Zap, BarChart, CheckCircle2, ArrowRight, MessageSquare, Heart } from 'lucide-react'; import Pricing from '@/components/Pricing'; import FAQ from '@/components/FAQ'; import styles from './channels.module.css'; export default function ChannelsPage() { const [currentSlide, setCurrentSlide] = useState(0); const testimonials = [ { quote: "SocialBuddy revolutionized how we handle our multi-channel strategy. It's simply brilliant.", author: "Sarah Jenkins", role: "Marketing Director, TechFlow" }, { quote: "The analytics across all channels provided insights we never had before. Highly recommended.", author: "Mike Ross", role: "CEO, Pearson Specter" }, { quote: "Managing 5 different platforms used to be a nightmare. Now it's our competitive advantage.", author: "Jessica Pearson", role: "Managing Partner, PSB" } ]; useEffect(() => { const timer = setInterval(() => { setCurrentSlide((prev) => (prev + 1) % testimonials.length); }, 5000); return () => clearInterval(timer); }, [testimonials.length]); return (
{/* 1. About/Intro Section (Ref Image 1: Left Image Frame, Right Content) */}
{/* Left Image with Frame */}
Channel Management
{/* Right Content */}

Master Every Channel with
Precision

Whether it's the professional network of LinkedIn, the visual appeal of Instagram, or the fast-paced world of Twitter, SocialBuddy optimizes your presence everywhere.

Our unified platform ensures your brand voice remains consistent while adapting to the unique nuances of each platform. Connect, engage, and grow without the chaos.

{/* 2. Process/Learning Section (Ref Image 2: Grid of 4 Icons) */}

Learning Your Channels

Understand the core pillars of effective multi-channel management.

Global Reach

Expand your audience across borders with localized content strategies.

Content Sync

Seamlessly synchronize posts while customizing for each platform's format.

Fast Execution

Schedule and deploy campaigns in minutes, not hours.

Deep Analytics

Get granular data on performance for every single channel.

{/* 3. Testimonial Section (Left Slider, Right Image) */}
{/* Left Content Slider */}
{testimonials.map((t, index) => (

{t.quote}

{t.author}

{t.role}

))} {/* Dots */}
{testimonials.map((_, index) => (
setCurrentSlide(index)} /> ))}
{/* Right Image */}
Success Story
{/* Reused Components */}
); }