import type { Locale } from "@/lib/locales";

export type AboutContent = {
  hero: {
    eyebrow: string;
    title: string;
    description: string;
    missionLabel: string;
    missionValue: string;
    productsLabel: string;
    growthLabel: string;
  };
  missionVision: {
    eyebrow: string;
    title: string;
    description: string;
    missionTitle: string;
    mission: string;
    visionTitle: string;
    vision: string;
  };
  whyBuilt: {
    eyebrow: string;
    title: string;
    description: string;
    problemsTitle: string;
    solutionsTitle: string;
    problems: string[];
    solutions: string[];
  };
  ecosystem: {
    eyebrow: string;
    title: string;
    description: string;
  };
  values: {
    eyebrow: string;
    title: string;
    description: string;
    items: { title: string; description: string }[];
  };
  journey: {
    eyebrow: string;
    title: string;
    description: string;
    items: { title: string; description: string }[];
  };
  stats: { value: string; label: string }[];
  cta: {
    title: string;
    description: string;
  };
};

const aboutContent: Record<Locale, AboutContent> = {
  en: {
    hero: {
      eyebrow: "About PureSaaS",
      title: "Building smarter digital systems for real estate, builders, and societies.",
      description:
        "PureSaaS helps businesses manage leads, projects, properties, residents, billing, and operations from one connected platform.",
      missionLabel: "Our mission",
      missionValue: "Make daily operations simple, visible, and ready to grow.",
      productsLabel: "Connected products",
      growthLabel: "Business focused",
    },
    missionVision: {
      eyebrow: "Our direction",
      title: "Practical software with a clear purpose",
      description:
        "We design around real daily work so teams get clarity without unnecessary complexity.",
      missionTitle: "Our Mission",
      mission: "To simplify complex business operations with easy-to-use SaaS products.",
      visionTitle: "Our Vision",
      vision:
        "To become a trusted digital platform for real estate, construction, and society management.",
    },
    whyBuilt: {
      eyebrow: "Why we built PureSaaS",
      title: "Replace scattered work with one clear operating system",
      description:
        "Growing businesses often lose time because important information sits across calls, files, registers, and spreadsheets. PureSaaS brings that work together.",
      problemsTitle: "Before PureSaaS",
      solutionsTitle: "With PureSaaS",
      problems: [
        "Scattered data across files and spreadsheets",
        "Manual follow-ups that are easy to miss",
        "Poor lead and booking visibility",
        "Slow communication between teams",
        "Difficult billing and maintenance tracking",
        "Reports that arrive too late to help",
      ],
      solutions: [
        "One connected workspace for daily operations",
        "Clear reminders, ownership, and follow-up history",
        "Live pipeline, booking, and project visibility",
        "Faster coordination through shared information",
        "Simple billing, collections, and service tracking",
        "Actionable dashboards for better decisions",
      ],
    },
    ecosystem: {
      eyebrow: "Product ecosystem",
      title: "Focused products. One connected PureSaaS platform.",
      description:
        "Start with the solution that fits your work today and build a clearer operating system as your business grows.",
    },
    values: {
      eyebrow: "What guides us",
      title: "Values that shape every product decision",
      description:
        "Premium software should still feel simple, dependable, and useful from the first day.",
      items: [
        { title: "Simplicity", description: "Daily users should understand the next step without extra training." },
        { title: "Trust", description: "Clear information helps owners, teams, and communities work with confidence." },
        { title: "Performance", description: "Fast, focused experiences make busy workdays easier." },
        { title: "Security", description: "Business information deserves careful handling and secure defaults." },
        { title: "Customer Success", description: "The real result is a team that works with more clarity." },
        { title: "Continuous Improvement", description: "Products should keep improving as customer needs grow." },
      ],
    },
    journey: {
      eyebrow: "Our journey",
      title: "Built carefully around real business needs",
      description:
        "PureSaaS has been shaped step by step with a practical goal: make operations easier to understand and manage.",
      items: [
        { title: "Idea", description: "Identify the daily friction slowing down growing teams." },
        { title: "Research", description: "Map real workflows across sales, projects, and communities." },
        { title: "Product Design", description: "Turn complex processes into clear, usable experiences." },
        { title: "Development", description: "Build focused products on a connected platform foundation." },
        { title: "Client Ready", description: "Prepare reliable onboarding, demos, and business-first support." },
      ],
    },
    stats: [
      { value: "3", label: "Core Products" },
      { value: "100%", label: "Business Focused" },
      { value: "Fast", label: "Easy Setup" },
      { value: "Ready", label: "Built for Growth" },
    ],
    cta: {
      title: "Ready to transform your business operations?",
      description: "Book a demo and see how PureSaaS can simplify your daily work.",
    },
  },
  hi: {
    hero: {
      eyebrow: "PureSaaS के बारे में",
      title: "रियल एस्टेट, बिल्डर्स और सोसायटी के लिए बेहतर डिजिटल सिस्टम बना रहे हैं।",
      description:
        "PureSaaS एक जुड़े हुए प्लेटफॉर्म से लीड, प्रोजेक्ट, प्रॉपर्टी, निवासी, बिलिंग और कामकाज संभालने में मदद करता है।",
      missionLabel: "हमारा मिशन",
      missionValue: "रोज़ के काम को आसान, साफ और ग्रोथ के लिए तैयार बनाना।",
      productsLabel: "जुड़े हुए प्रोडक्ट",
      growthLabel: "बिजनेस पर फोकस",
    },
    missionVision: {
      eyebrow: "हमारी दिशा",
      title: "साफ उद्देश्य के साथ उपयोगी सॉफ्टवेयर",
      description: "हम असली रोज़ के काम को समझकर सॉफ्टवेयर बनाते हैं, ताकि टीम बिना उलझन के आगे बढ़े।",
      missionTitle: "हमारा मिशन",
      mission: "आसान SaaS प्रोडक्ट से जटिल बिजनेस कामकाज को सरल बनाना।",
      visionTitle: "हमारा विज़न",
      vision: "रियल एस्टेट, कंस्ट्रक्शन और सोसायटी मैनेजमेंट के लिए भरोसेमंद डिजिटल प्लेटफॉर्म बनना।",
    },
    whyBuilt: {
      eyebrow: "हमने PureSaaS क्यों बनाया",
      title: "बिखरे हुए काम को एक साफ सिस्टम में बदलें",
      description: "बढ़ते बिजनेस में जरूरी जानकारी कॉल, फाइल, रजिस्टर और स्प्रेडशीट में बिखर जाती है। PureSaaS इसे एक जगह जोड़ता है।",
      problemsTitle: "PureSaaS से पहले",
      solutionsTitle: "PureSaaS के साथ",
      problems: ["फाइल और स्प्रेडशीट में बिखरा डेटा", "छूट जाने वाले मैनुअल फॉलो-अप", "लीड और बुकिंग की साफ स्थिति नहीं", "टीम के बीच धीमा कम्युनिकेशन", "बिलिंग और मेंटेनेंस ट्रैक करना कठिन", "देर से मिलने वाली रिपोर्ट"],
      solutions: ["रोज़ के काम के लिए एक जुड़ा वर्कस्पेस", "रिमाइंडर, जिम्मेदारी और फॉलो-अप हिस्ट्री", "लाइव पाइपलाइन, बुकिंग और प्रोजेक्ट स्थिति", "साझा जानकारी से तेज तालमेल", "आसान बिलिंग, कलेक्शन और सर्विस ट्रैकिंग", "बेहतर फैसले के लिए उपयोगी डैशबोर्ड"],
    },
    ecosystem: {
      eyebrow: "प्रोडक्ट इकोसिस्टम",
      title: "फोकस्ड प्रोडक्ट्स। एक जुड़ा हुआ PureSaaS प्लेटफॉर्म।",
      description: "आज अपनी ज़रूरत के समाधान से शुरू करें और बिजनेस बढ़ने के साथ साफ सिस्टम बनाएं।",
    },
    values: {
      eyebrow: "हमारी सोच",
      title: "हर प्रोडक्ट फैसले को दिशा देने वाली वैल्यू",
      description: "प्रीमियम सॉफ्टवेयर पहले दिन से आसान, भरोसेमंद और उपयोगी होना चाहिए।",
      items: [
        { title: "सरलता", description: "रोज़ के उपयोगकर्ता अगला कदम आसानी से समझ सकें।" },
        { title: "भरोसा", description: "साफ जानकारी से मालिक और टीम भरोसे के साथ काम करें।" },
        { title: "परफॉर्मेंस", description: "तेज़ अनुभव व्यस्त दिन को आसान बनाता है।" },
        { title: "सुरक्षा", description: "बिजनेस जानकारी के लिए सावधान प्रक्रिया जरूरी है।" },
        { title: "कस्टमर सफलता", description: "असली परिणाम है टीम का अधिक साफ तरीके से काम करना।" },
        { title: "लगातार सुधार", description: "ग्राहक की ज़रूरत के साथ प्रोडक्ट भी बेहतर होना चाहिए।" },
      ],
    },
    journey: {
      eyebrow: "हमारी यात्रा",
      title: "असली बिजनेस ज़रूरत के अनुसार सावधानी से बनाया",
      description: "PureSaaS का साफ लक्ष्य है: कामकाज को समझना और संभालना आसान बनाना।",
      items: [
        { title: "आइडिया", description: "टीम को धीमा करने वाली रोज़ की समस्या समझना।" },
        { title: "रिसर्च", description: "सेल्स, प्रोजेक्ट और कम्युनिटी वर्कफ्लो को मैप करना।" },
        { title: "प्रोडक्ट डिज़ाइन", description: "जटिल प्रक्रिया को आसान अनुभव में बदलना।" },
        { title: "डेवलपमेंट", description: "जुड़े प्लेटफॉर्म पर फोकस्ड प्रोडक्ट बनाना।" },
        { title: "क्लाइंट रेडी", description: "भरोसेमंद ऑनबोर्डिंग, डेमो और सपोर्ट तैयार करना।" },
      ],
    },
    stats: [{ value: "3", label: "मुख्य प्रोडक्ट" }, { value: "100%", label: "बिजनेस पर फोकस" }, { value: "EN · HI · GU", label: "मल्टी-लैंग्वेज अनुभव" }, { value: "Ready", label: "ग्रोथ के लिए तैयार" }],
    cta: { title: "अपने बिजनेस कामकाज को बदलने के लिए तैयार हैं?", description: "डेमो बुक करें और देखें PureSaaS रोज़ का काम कैसे आसान बना सकता है।" },
  },
  gu: {
    hero: {
      eyebrow: "PureSaaS વિશે",
      title: "રિયલ એસ્ટેટ, બિલ્ડર્સ અને સોસાયટી માટે વધુ સારી ડિજિટલ સિસ્ટમ બનાવી રહ્યા છીએ.",
      description: "PureSaaS એક જોડાયેલા પ્લેટફોર્મથી લીડ, પ્રોજેક્ટ, પ્રોપર્ટી, રહેવાસી, બિલિંગ અને કામગીરી સંભાળવામાં મદદ કરે છે.",
      missionLabel: "અમારું મિશન",
      missionValue: "રોજની કામગીરી સરળ, સ્પષ્ટ અને ગ્રોથ માટે તૈયાર બનાવવી.",
      productsLabel: "જોડાયેલા પ્રોડક્ટ",
      growthLabel: "બિઝનેસ પર ફોકસ",
    },
    missionVision: {
      eyebrow: "અમારી દિશા",
      title: "સ્પષ્ટ હેતુ સાથે ઉપયોગી સોફ્ટવેર",
      description: "અમે રોજનું ખરું કામ સમજીને સોફ્ટવેર બનાવીએ છીએ જેથી ટીમ સરળતાથી આગળ વધે.",
      missionTitle: "અમારું મિશન",
      mission: "સરળ SaaS પ્રોડક્ટથી જટિલ બિઝનેસ કામગીરી સરળ બનાવવી.",
      visionTitle: "અમારું વિઝન",
      vision: "રિયલ એસ્ટેટ, કન્સ્ટ્રક્શન અને સોસાયટી મેનેજમેન્ટ માટે વિશ્વસનીય ડિજિટલ પ્લેટફોર્મ બનવું.",
    },
    whyBuilt: {
      eyebrow: "અમે PureSaaS કેમ બનાવ્યું",
      title: "છૂટાછવાયા કામને એક સ્પષ્ટ સિસ્ટમમાં બદલો",
      description: "વધતા બિઝનેસમાં જરૂરી માહિતી કોલ, ફાઇલ, રજિસ્ટર અને સ્પ્રેડશીટમાં છૂટી જાય છે. PureSaaS તેને એક જગ્યાએ જોડે છે.",
      problemsTitle: "PureSaaS પહેલાં",
      solutionsTitle: "PureSaaS સાથે",
      problems: ["ફાઇલ અને સ્પ્રેડશીટમાં છૂટો ડેટા", "છૂટી જતા મેન્યુઅલ ફોલો-અપ", "લીડ અને બુકિંગની સ્પષ્ટ સ્થિતિ નહીં", "ટીમ વચ્ચે ધીમું કમ્યુનિકેશન", "બિલિંગ અને મેન્ટેનન્સ ટ્રેક કરવું મુશ્કેલ", "મોડી મળતી રિપોર્ટ"],
      solutions: ["રોજની કામગીરી માટે એક જોડાયેલ વર્કસ્પેસ", "રિમાઇન્ડર, જવાબદારી અને ફોલો-અપ હિસ્ટ્રી", "લાઇવ પાઇપલાઇન, બુકિંગ અને પ્રોજેક્ટ સ્થિતિ", "શેર કરેલી માહિતીથી ઝડપી તાલમેલ", "સરળ બિલિંગ, કલેક્શન અને સર્વિસ ટ્રેકિંગ", "સારા નિર્ણય માટે ઉપયોગી ડેશબોર્ડ"],
    },
    ecosystem: {
      eyebrow: "પ્રોડક્ટ ઇકોસિસ્ટમ",
      title: "ફોકસ્ડ પ્રોડક્ટ. એક જોડાયેલ PureSaaS પ્લેટફોર્મ.",
      description: "આજે તમારી જરૂરના સોલ્યુશનથી શરૂ કરો અને બિઝનેસ વધે તેમ સ્પષ્ટ સિસ્ટમ બનાવો.",
    },
    values: {
      eyebrow: "અમારી વિચારધારા",
      title: "દરેક પ્રોડક્ટ નિર્ણયને દિશા આપતી વેલ્યુ",
      description: "પ્રીમિયમ સોફ્ટવેર પહેલા દિવસથી સરળ, વિશ્વસનીય અને ઉપયોગી હોવું જોઈએ.",
      items: [
        { title: "સરળતા", description: "રોજના ઉપયોગકર્તા આગળનું પગલું સરળતાથી સમજી શકે." },
        { title: "વિશ્વાસ", description: "સ્પષ્ટ માહિતીથી માલિક અને ટીમ વિશ્વાસથી કામ કરે." },
        { title: "પરફોર્મન્સ", description: "ઝડપી અનુભવ વ્યસ્ત દિવસને સરળ બનાવે છે." },
        { title: "સુરક્ષા", description: "બિઝનેસ માહિતી માટે કાળજીપૂર્વકની પ્રક્રિયા જરૂરી છે." },
        { title: "કસ્ટમર સફળતા", description: "ખરું પરિણામ છે ટીમનું વધુ સ્પષ્ટ રીતે કામ કરવું." },
        { title: "સતત સુધારો", description: "ગ્રાહકની જરૂર સાથે પ્રોડક્ટ પણ સુધરવી જોઈએ." },
      ],
    },
    journey: {
      eyebrow: "અમારી સફર",
      title: "ખરી બિઝનેસ જરૂરિયાત પ્રમાણે કાળજીથી બનાવેલું",
      description: "PureSaaSનો સ્પષ્ટ હેતુ છે: કામગીરી સમજવી અને સંભાળવી સરળ બનાવવી.",
      items: [
        { title: "આઇડિયા", description: "ટીમને ધીમી પાડતી રોજની સમસ્યા સમજવી." },
        { title: "રિસર્ચ", description: "સેલ્સ, પ્રોજેક્ટ અને કમ્યુનિટી વર્કફ્લો મેપ કરવા." },
        { title: "પ્રોડક્ટ ડિઝાઇન", description: "જટિલ પ્રક્રિયાને સરળ અનુભવમાં બદલવી." },
        { title: "ડેવલપમેન્ટ", description: "જોડાયેલા પ્લેટફોર્મ પર ફોકસ્ડ પ્રોડક્ટ બનાવવી." },
        { title: "ક્લાયન્ટ રેડી", description: "વિશ્વસનીય ઓનબોર્ડિંગ, ડેમો અને સપોર્ટ તૈયાર કરવા." },
      ],
    },
    stats: [{ value: "3", label: "મુખ્ય પ્રોડક્ટ" }, { value: "100%", label: "બિઝનેસ પર ફોકસ" }, { value: "EN · HI · GU", label: "મલ્ટી-લેંગ્વેજ અનુભવ" }, { value: "Ready", label: "ગ્રોથ માટે તૈયાર" }],
    cta: { title: "તમારી બિઝનેસ કામગીરી બદલવા માટે તૈયાર છો?", description: "ડેમો બુક કરો અને જુઓ PureSaaS રોજનું કામ કેવી રીતે સરળ બનાવી શકે છે." },
  },
};

export function getAboutContent(locale: Locale) {
  return aboutContent[locale];
}
