import styles from './Features.module.css'; export default function Features() { const features = [ { icon: '📅', title: 'Smart Scheduling', description: 'Schedule posts across all platforms with AI-powered optimal timing suggestions.', color: '#667eea', }, { icon: '📊', title: 'Advanced Analytics', description: 'Track performance metrics, engagement rates, and audience insights in real-time.', color: '#ec4899', }, { icon: '🤖', title: 'AI Content Assistant', description: 'Generate engaging captions and hashtags with our AI-powered content tools.', color: '#14b8a6', }, { icon: '👥', title: 'Team Collaboration', description: 'Work seamlessly with your team with role-based access and approval workflows.', color: '#f59e0b', }, { icon: '📱', title: 'Multi-Platform Support', description: 'Manage Facebook, Instagram, Twitter, LinkedIn, and more from one dashboard.', color: '#8b5cf6', }, { icon: '🔔', title: 'Real-Time Notifications', description: 'Stay updated with instant alerts for mentions, comments, and engagement.', color: '#ef4444', }, ]; return (
✨ Features

Everything You Need to Succeed

Powerful tools designed to streamline your social media management and boost your online presence.

{features.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

Learn more →
))}
); }