import type { Metadata } from 'next'; import styles from './about.module.css'; export const metadata: Metadata = { title: 'About Us - SocialBuddy', description: 'Learn about SocialBuddy\'s mission to empower businesses and creators with powerful social media management tools.', }; export default function AboutPage() { const team = [ { name: 'Alex Johnson', role: 'CEO & Founder', image: 'πŸ‘¨β€πŸ’Ό', bio: '10+ years in social media marketing', }, { name: 'Sarah Williams', role: 'CTO', image: 'πŸ‘©β€πŸ’»', bio: 'Former lead engineer at major tech companies', }, { name: 'Michael Chen', role: 'Head of Product', image: 'πŸ‘¨β€πŸŽ¨', bio: 'Product design expert with a passion for UX', }, { name: 'Emily Rodriguez', role: 'Head of Customer Success', image: 'πŸ‘©β€πŸ’Ό', bio: 'Dedicated to making customers successful', }, ]; const values = [ { icon: '🎯', title: 'Customer First', description: 'Everything we do is centered around making our customers successful.', }, { icon: 'πŸš€', title: 'Innovation', description: 'We constantly push boundaries to deliver cutting-edge solutions.', }, { icon: '🀝', title: 'Collaboration', description: 'We believe in the power of teamwork and community.', }, { icon: 'πŸ’‘', title: 'Simplicity', description: 'Complex problems deserve simple, elegant solutions.', }, ]; const milestones = [ { year: '2020', event: 'SocialBuddy founded', icon: 'πŸŽ‰' }, { year: '2021', event: '1,000 users milestone', icon: '🎯' }, { year: '2022', event: 'Series A funding', icon: 'πŸ’°' }, { year: '2023', event: '10,000+ active users', icon: 'πŸš€' }, { year: '2024', event: 'AI features launched', icon: 'πŸ€–' }, { year: '2025', event: 'Global expansion', icon: '🌍' }, ]; return (
{/* Hero Section */}

About SocialBuddy

We're on a mission to empower businesses and creators to build meaningful connections through social mediaβ€”without the complexity.

{/* Story Section */}
πŸ“–

Our Story

SocialBuddy was born out of frustration. Our founders spent years managing social media for multiple businesses and experienced firsthand the chaos of juggling multiple platforms, tools, and spreadsheets.

We knew there had to be a better way. So in 2020, we set out to build the social media management platform we wished existedβ€”one that's powerful yet simple, comprehensive yet intuitive, and accessible to businesses of all sizes.

Today, SocialBuddy serves over 10,000 businesses and creators worldwide, helping them save time, increase engagement, and grow their online presence.

{/* Values Section */}

Our Values

The principles that guide everything we do

{values.map((value, index) => (
{value.icon}

{value.title}

{value.description}

))}
{/* Timeline Section */}

Our Journey

Key milestones in our growth story

{milestones.map((milestone, index) => (
{milestone.icon}
{milestone.year}
{milestone.event}
))}
{/* Team Section */}

Meet Our Team

The passionate people behind SocialBuddy

{team.map((member, index) => (
{member.image}

{member.name}

{member.role}

{member.bio}

))}
{/* CTA Section */}

Join Us on Our Journey

Be part of the future of social media management

Start Free Trial Contact Us
); }