import React from 'react'; import { useTranslation } from 'react-i18next'; import { Lightbulb, Shield, Eye, HeartHandshake } from 'lucide-react'; import CTASection from '../../components/marketing/CTASection'; const AboutPage: React.FC = () => { const { t } = useTranslation(); const values = [ { icon: Lightbulb, titleKey: 'marketing.about.values.simplicity.title', descriptionKey: 'marketing.about.values.simplicity.description', color: 'brand', }, { icon: Shield, titleKey: 'marketing.about.values.reliability.title', descriptionKey: 'marketing.about.values.reliability.description', color: 'green', }, { icon: Eye, titleKey: 'marketing.about.values.transparency.title', descriptionKey: 'marketing.about.values.transparency.description', color: 'purple', }, { icon: HeartHandshake, titleKey: 'marketing.about.values.support.title', descriptionKey: 'marketing.about.values.support.description', color: 'orange', }, ]; const colorClasses: Record = { brand: 'bg-brand-100 dark:bg-brand-900/30 text-brand-600 dark:text-brand-400', green: 'bg-green-100 dark:bg-green-900/30 text-green-600 dark:text-green-400', purple: 'bg-purple-100 dark:bg-purple-900/30 text-purple-600 dark:text-purple-400', orange: 'bg-orange-100 dark:bg-orange-900/30 text-orange-600 dark:text-orange-400', }; return (
{/* Header Section */}

{t('marketing.about.title')}

{t('marketing.about.subtitle')}

{/* Story Section */}

{t('marketing.about.story.title')}

{t('marketing.about.story.content')}

{t('marketing.about.story.content2')}

2017
{t('marketing.about.story.founded')}
8+ years building scheduling solutions
Battle-tested with real businesses
Features born from customer feedback
Now available to everyone
{/* Mission Section */}

{t('marketing.about.mission.title')}

{t('marketing.about.mission.content')}

{/* Values Section */}

{t('marketing.about.values.title')}

{values.map((value) => (

{t(value.titleKey)}

{t(value.descriptionKey)}

))}
{/* CTA Section */}
); }; export default AboutPage;