import type { Metadata } from 'next'; import styles from './features.module.css'; export const metadata: Metadata = { title: 'Features - SocialBuddy', description: 'Discover all the powerful features that make SocialBuddy the best social media management platform for businesses and creators.', }; export default function FeaturesPage() { const detailedFeatures = [ { category: 'Content Management', icon: 'πŸ“', features: [ { title: 'Visual Content Calendar', description: 'Plan and organize your content with an intuitive drag-and-drop calendar interface.', icon: 'πŸ“…', }, { title: 'Bulk Upload & Scheduling', description: 'Upload and schedule hundreds of posts at once with CSV import functionality.', icon: '⬆️', }, { title: 'Content Library', description: 'Store and organize your media assets in a centralized, searchable library.', icon: 'πŸ“š', }, ], }, { category: 'Analytics & Insights', icon: 'πŸ“Š', features: [ { title: 'Real-Time Analytics', description: 'Monitor your performance with live data updates and comprehensive metrics.', icon: 'πŸ“ˆ', }, { title: 'Competitor Analysis', description: 'Track and compare your performance against competitors in your industry.', icon: '🎯', }, { title: 'Custom Reports', description: 'Generate beautiful, white-labeled reports for clients and stakeholders.', icon: 'πŸ“„', }, ], }, { category: 'Engagement Tools', icon: 'πŸ’¬', features: [ { title: 'Unified Inbox', description: 'Manage all your messages, comments, and mentions from one centralized inbox.', icon: 'πŸ“₯', }, { title: 'Auto-Responses', description: 'Set up automated responses for common questions and inquiries.', icon: 'πŸ€–', }, { title: 'Sentiment Analysis', description: 'Understand audience sentiment with AI-powered emotion detection.', icon: '😊', }, ], }, { category: 'Team Collaboration', icon: 'πŸ‘₯', features: [ { title: 'Role-Based Access', description: 'Control permissions with customizable roles for team members.', icon: 'πŸ”', }, { title: 'Approval Workflows', description: 'Set up multi-level approval processes for content review.', icon: 'βœ…', }, { title: 'Team Activity Log', description: 'Track all team actions with a comprehensive audit trail.', icon: 'πŸ“‹', }, ], }, ]; return (
{/* Hero Section */}

Powerful Features for Modern Teams

Everything you need to manage, analyze, and grow your social media presenceβ€”all in one platform.

{/* Features Grid */}
{detailedFeatures.map((category, idx) => (
{category.icon}

{category.category}

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

{feature.title}

{feature.description}

))}
))}
{/* CTA Section */}

Ready to Get Started?

Join thousands of businesses already using SocialBuddy

Start Your Free Trial
); }