import type { Lang } from "./types";

export type Dict = {
  brand: string;
  nav: {
    home: string;
    services: string;
    portfolio: string;
    about: string;
    contact: string;
  };
  cta: {
    startProject: string;
    whatsapp: string;
    exploreServices: string;
    viewProjects: string;
    sendRequest: string;
    send: string;
  };
  home: {
    heroTitle: string;
    heroText: string;
    trustPill: string;
    problemTitle: string;
    problems: string[];
    problemOutro: string;
    valueTitle: string;
    values: { title: string; text: string }[];
    servicesTitle: string;
    services: { title: string; text: string }[];
    portfolioTitle: string;
    portfolio: { title: string; text: string; result: string }[];
    testimonialsTitle: string;
    testimonials: { name: string; quote: string }[];
    finalCtaTitle: string;
    finalCtaText: string;
  };
  services: {
    title: string;
    intro: string;
    items: { title: string; desc: string; outcome: string }[];
  };
  portfolio: {
    title: string;
    intro: string;
    items: {
      title: string;
      category: string;
      problem: string;
      solution: string;
      result: string;
      image: {
        src: string;
        alt: string;
      };
      tech: string[];
    }[];
  };
  about: {
    title: string;
    intro: string;
    bullets: string[];
    visionTitle: string;
    vision: string;
  };
  contact: {
    title: string;
    intro: string;
    form: {
      name: string;
      email: string;
      message: string;
      note: string;
      success: string;
      error: string;
    };
  };
  footer: {
    rights: string;
    email: string;
  };
};

export const ar = {
  brand: "Raqmiat Plus",
  nav: {
    home: "الرئيسية",
    services: "الخدمات",
    portfolio: "الأعمال",
    about: "من نحن",
    contact: "تواصل معنا",
  },
  cta: {
    startProject: "ابدأ مشروعك الآن",
    whatsapp: "تواصل عبر واتساب",
    exploreServices: "استكشف جميع الخدمات",
    viewProjects: "شاهد المشاريع",
    sendRequest: "أرسل طلبك",
    send: "إرسال",
  },
  home: {
    heroTitle: "حوّل فكرتك إلى مشروع رقمي يحقق نتائج فعلية",
    heroText:
      "إذا كنت تبحث عن موقع أو تطبيق أو نظام رقمي لا يقتصر على الشكل فقط—بل يرفع الأداء ويزيد العملاء—فنحن هنا لنقدّم لك الحل.",
    trustPill: "Premium Corporate Digital Partner",
    problemTitle: "هل تواجه هذه التحديات؟",
    problems: [
      "موقعك لا يجذب عملاء",
      "مشروعك متوقف أو غير واضح",
      "لديك بيانات بلا فائدة",
      "تحتاج جهة تفهم عملك",
    ],
    problemOutro:
      "نحن نحل هذه التحديات عبر حلول رقمية مخصصة مبنية على فهم حقيقي لاحتياجك.",
    valueTitle: "لماذا Raqmiat Plus؟",
    values: [
      { title: "نركز على النتائج", text: "التحويل والنمو قبل المظهر." },
      { title: "حلول مخصصة", text: "لكل عميل مسار واضح وقياس أثر." },
      { title: "فهم عميق للسوق", text: "نربط التقنية بأهداف الأعمال." },
      { title: "التزام بالجودة", text: "مواعيد واضحة ومعايير تنفيذ عالية." },
    ],
    servicesTitle: "خدمات مختارة لقطاعات مختلفة",
    services: [
      { title: "خدمات رواد الأعمال", text: "إطلاق سريع بهوية قوية وتجربة محسوبة." },
      { title: "خدمات الجهات الحكومية", text: "حلول موثوقة متوافقة ومعايير وصول." },
      { title: "خدمات المتاجر الإلكترونية", text: "رحلة شراء محسّنة + تكاملات نمو." },
      { title: "تصميم المواقع", text: "مواقع فاخرة تركز على التحويل." },
      { title: "تطوير التطبيقات", text: "تطبيقات عملية بأداء عالٍ وتجربة مريحة." },
      { title: "تحليل البيانات", text: "نحوّل البيانات إلى قرارات قابلة للتنفيذ." },
    ],
    portfolioTitle: "أعمالنا تتحدث عنّا",
    portfolio: [
      {
        title: "منصة خدمات رقمية",
        text: "تجربة مستخدم محسّنة وبنية جاهزة للتوسع.",
        result: "تحسين معدل التحويل + زيادة الطلبات",
      },
      {
        title: "بوابة داخلية للمؤسسات",
        text: "أتمتة إجراءات وتشغيل مؤشرات الأداء.",
        result: "تقليل الوقت التشغيلي + رفع الكفاءة",
      },
      {
        title: "متجر إلكتروني Premium",
        text: "رحلة شراء واضحة مع سرعة وأمان.",
        result: "زيادة المبيعات + تحسين تجربة الدفع",
      },
    ],
    testimonialsTitle: "ثقة عملائنا هي إنجازنا",
    testimonials: [
      {
        name: "مدير مشروع — جهة حكومية",
        quote:
          "تعامل احترافي وتسليم منضبط. الأهم: النتائج ظهرت سريعًا على الأداء ورضا المستخدمين.",
      },
      {
        name: "CEO — شركة ناشئة",
        quote:
          "فهموا نموذج العمل قبل التنفيذ. الموقع أصبح أداة بيع حقيقية وليس مجرد واجهة.",
      },
      {
        name: "مدير تسويق — شركة متوسطة",
        quote:
          "تحسينات UX وقياس الأداء نقلت الحملة لمرحلة أعلى. توصية قوية.",
      },
    ],
    finalCtaTitle: "جاهز تبدأ مشروعك بشكل صحيح؟",
    finalCtaText:
      "أخبرنا بما تريد تحقيقه وسنقترح مسارًا واضحًا، واقعيًا، وقابلًا للقياس.",
  },
  services: {
    title: "حلول رقمية مصممة لتحقيق نتائج",
    intro:
      "نقدّم خدمات رقمية تُبنى على أهدافك. كل خدمة لدينا تشرح: كيف تساعدك، وما القيمة، وما النتيجة المتوقعة.",
    items: [
      {
        title: "تصميم المواقع",
        desc:
          "نصمم مواقع لا تكتفي بالمظهر، بل تركز على تجربة المستخدم وتحويل الزوار إلى عملاء.",
        outcome: "تحويل أعلى + ثقة أقوى + أداء أسرع",
      },
      {
        title: "تطوير التطبيقات",
        desc:
          "تطوير تطبيقات ويب/موبايل تُسهّل العمليات وتزيد التفاعل وتدعم النمو.",
        outcome: "تجربة سلسة + قابلية توسع + استقرار",
      },
      {
        title: "أنظمة المؤسسات",
        desc:
          "لوحات تحكم، بوابات داخلية، أتمتة إجراءات، وتكاملات مع الأنظمة.",
        outcome: "كفاءة أعلى + وضوح تشغيلي + تقليل أخطاء",
      },
      {
        title: "تحليل البيانات",
        desc:
          "نبني تقارير ولوحات KPIs ونربطها بقرارات قابلة للتنفيذ.",
        outcome: "قرارات أفضل + رؤية أوضح + تحسين مستمر",
      },
      {
        title: "حلول الجهات الحكومية",
        desc:
          "حلول موثوقة مع مراعاة الوصول، الأمان، والحوكمة.",
        outcome: "امتثال + ثقة + تجربة مواطن أفضل",
      },
      {
        title: "حلول رواد الأعمال",
        desc:
          "إطلاق MVP أو منتج رقمي بمسار واضح وتحسينات سريعة.",
        outcome: "وقت أسرع للسوق + تعلم أسرع + نمو",
      },
    ],
  },
  portfolio: {
    title: "نتائج حقيقية من مشاريعنا",
    intro:
      "نقدّم مشاريع تُبنى على مشكلة واضحة، حل مناسب، ونتيجة قابلة للقياس.",
    items: [
      {
        title: "موقع Corporate لشركة خدمات B2B",
        category: "مواقع",
        problem:
          "الموقع القديم كان يعرض الخدمات بشكل عام دون مسار واضح للطلب، مما أدى لزيارات جيدة ولكن طلبات منخفضة الجودة.",
        solution:
          "إعادة هيكلة المحتوى إلى صفحات خدمات تحويلية + تحسين تجربة القراءة واتخاذ القرار + CTAs واضحة + نموذج تواصل قصير مع تتبع أحداث التحويل.",
        result:
          "تحسين جودة العملاء المحتملين وتقليل الاستفسارات غير المناسبة، مع زيادة تدريجية في طلبات “ابدأ مشروعك” خلال الأسابيع الأولى بناءً على القياس والتحسين.",
        image: {
          src: "/portfolio/website-b2b.jpg",
          alt: "لقطة لموقع Corporate على شاشة لابتوب",
        },
        tech: ["Next.js", "TypeScript", "Tailwind", "SEO", "Analytics"],
      },
      {
        title: "تطبيق موبايل لإدارة الطلبات (متجر/سلسلة)",
        category: "تطبيقات",
        problem:
          "تعدد قنوات الطلبات (واتساب/اتصالات/موقع) سبّب أخطاء في التسجيل وتأخرًا في التنفيذ وعدم وضوح لحالة الطلب.",
        solution:
          "تطبيق موبايل للعميل + لوحة إدارة للفروع: إنشاء الطلب، تتبع الحالة، إشعارات، وسياسات تسعير/توصيل قابلة للتعديل، مع صلاحيات للمشغلين.",
        result:
          "تقليل الأخطاء التشغيلية وتحسين تجربة العميل عبر وضوح الحالة والإشعارات، مما ينعكس على سرعة التنفيذ ورضا العملاء ومعه ارتفاع تدريجي في إعادة الطلب.",
        image: {
          src: "/portfolio/mobile-orders.jpg",
          alt: "هاتف يعرض واجهة تطبيق مراسلة/تواصل على الشاشة",
        },
        tech: ["React Native", "API", "RBAC", "Notifications"],
      },
      {
        title: "لوحة مؤشرات KPIs لإدارة الأداء (شركة/جهة)",
        category: "تحليل بيانات",
        problem:
          "البيانات موجودة في عدة ملفات وأنظمة، لكن الإدارة لا ترى مؤشرات موحّدة وتُضيع وقتًا في إعداد تقارير يدوية.",
        solution:
          "تجميع البيانات (ETL خفيف) + توحيد التعريفات + لوحة KPIs تفاعلية مع فلاتر وشرائح، وتنبيهات مبنية على عتبات متفق عليها.",
        result:
          "تقليل وقت إعداد التقارير الدورية وتحسين سرعة اتخاذ القرار عبر مؤشرات موحدة قابلة للمراجعة، مع رؤية أوضح للاتجاهات والانحرافات.",
        image: {
          src: "/portfolio/dashboard-kpi.jpg",
          alt: "شاشة لابتوب تعرض لوحة بيانات ورسوم بيانية",
        },
        tech: ["Data Modeling", "BI", "ETL", "Dashboards"],
      },
      {
        title: "متجر إلكتروني Premium (رحلة شراء محسّنة)",
        category: "مواقع",
        problem:
          "معدل التخلي عن السلة مرتفع بسبب بطء الصفحات وتعدد خطوات الدفع وعدم وضوح الشحن/الرسوم.",
        solution:
          "تحسين الأداء (Core Web Vitals) + تبسيط الدفع إلى خطوات قليلة + توضيح الشحن والرسوم مبكرًا + رسائل ثقة (ضمان/سياسة استرجاع).",
        result:
          "رفع معدل إكمال الدفع بشكل تدريجي وتحسين رضا العملاء، مع انخفاض ملحوظ في استفسارات ما قبل الشراء نتيجة وضوح الرحلة.",
        image: {
          src: "/portfolio/ecommerce-checkout.jpg",
          alt: "لابتوب وتابلت يعرضان واجهة متجر إلكتروني",
        },
        tech: ["Next.js", "Payments", "Caching", "CDN", "SEO"],
      },
      {
        title: "أتمتة تقارير Excel للمالية والمشتريات",
        category: "أعمال Excel",
        problem:
          "التقارير الشهرية تُبنى يدويًا (قص/لصق) مع أخطاء متكررة وتضارب نسخ، وتأخر في إغلاق الشهر.",
        solution:
          "إعادة تصميم القوالب + Power Query للاستيراد والتنظيف + Power Pivot للنمذجة + ماكرو بسيط لتوليد التقارير بضغطة واحدة مع توثيق خطوات التشغيل.",
        result:
          "تقليل وقت إعداد التقرير وتقليل الأخطاء البشرية، مع إمكانية تتبع المصدر والتحقق قبل الإرسال للإدارة—ما يجعل الإغلاق الشهري أكثر انضباطًا.",
        image: {
          src: "/portfolio/excel-reporting.jpg",
          alt: "شخص يعمل على ملف جدول بيانات على لابتوب",
        },
        tech: ["Excel", "Power Query", "Power Pivot", "VBA"],
      },
    ],
  },
  about: {
    title: "من نحن",
    intro:
      "نحن فريق متخصص في بناء حلول رقمية تساعد الشركات على النمو.",
    bullets: [
      "نركز على الجودة والأداء",
      "نعمل كشريك تقني على المدى الطويل",
      "نحوّل المتطلبات إلى منتج واضح وقابل للقياس",
    ],
    visionTitle: "رؤيتنا",
    vision: "أن نكون الخيار الأول للحلول الرقمية",
  },
  contact: {
    title: "ابدأ الآن",
    intro: "أخبرنا عن مشروعك وسنقدم لك الحل المناسب",
    form: {
      name: "الاسم",
      email: "البريد الإلكتروني",
      message: "رسالتك",
      note:
        "يمكن ربط النموذج لاحقًا مع SMTP أو API حسب الاستضافة (Vercel أو cPanel).",
      success: "تم استلام رسالتك. سنعود لك قريبًا.",
      error: "حدث خطأ. حاول مرة أخرى أو تواصل عبر واتساب.",
    },
  },
  footer: {
    rights: "جميع الحقوق محفوظة",
    email: "البريد",
  },
} satisfies Dict;

export const en = {
  brand: "Raqmiat Plus",
  nav: {
    home: "Home",
    services: "Services",
    portfolio: "Portfolio",
    about: "About",
    contact: "Contact",
  },
  cta: {
    startProject: "Start your project",
    whatsapp: "WhatsApp",
    exploreServices: "Explore all services",
    viewProjects: "View projects",
    sendRequest: "Send request",
    send: "Send",
  },
  home: {
    heroTitle: "Turn your idea into a digital product that delivers real results",
    heroText:
      "If you need a website, app, or system that doesn’t stop at visuals—one that improves performance and grows customers—we’re here to build it with you.",
    trustPill: "Premium Corporate Digital Partner",
    problemTitle: "Facing any of these challenges?",
    problems: [
      "Your website isn’t converting",
      "Your project is stuck or unclear",
      "You have data but no insights",
      "You need a partner who understands your business",
    ],
    problemOutro:
      "We solve these challenges with tailored digital solutions built on real understanding of your needs.",
    valueTitle: "Why Raqmiat Plus?",
    values: [
      { title: "Results first", text: "Conversion and growth over decoration." },
      { title: "Tailored solutions", text: "A clear path and measurable impact." },
      { title: "Market-aware", text: "We connect tech to business outcomes." },
      { title: "High standards", text: "Reliable timelines and premium execution." },
    ],
    servicesTitle: "Selected services for different sectors",
    services: [
      { title: "Entrepreneurs", text: "Fast launch, strong brand, measurable UX." },
      { title: "Government", text: "Trusted delivery with accessibility and governance." },
      { title: "E-commerce", text: "Optimized purchase journey + growth integrations." },
      { title: "Web design", text: "Premium websites built to convert." },
      { title: "App development", text: "High-performance products with great UX." },
      { title: "Data analytics", text: "Turn data into decisions and action." },
    ],
    portfolioTitle: "Our work speaks for itself",
    portfolio: [
      {
        title: "Digital services platform",
        text: "Improved UX and scalable architecture.",
        result: "Higher conversion + more qualified requests",
      },
      {
        title: "Enterprise internal portal",
        text: "Automation and KPI-focused operations.",
        result: "Reduced operational time + higher efficiency",
      },
      {
        title: "Premium e-commerce store",
        text: "Clear checkout with speed and security.",
        result: "More sales + better payment experience",
      },
    ],
    testimonialsTitle: "Client trust is our achievement",
    testimonials: [
      {
        name: "Project Director — Government",
        quote:
          "Professional delivery and discipline. Most importantly, we saw quick improvements in performance and satisfaction.",
      },
      {
        name: "CEO — Startup",
        quote:
          "They understood our business before writing code. The website became a real sales engine.",
      },
      {
        name: "Marketing Lead — Mid-size company",
        quote:
          "UX improvements and measurement took our campaigns to a higher level. Strong recommendation.",
      },
    ],
    finalCtaTitle: "Ready to start the right way?",
    finalCtaText:
      "Tell us what you want to achieve and we’ll propose a clear, realistic, measurable path.",
  },
  services: {
    title: "Digital solutions designed to deliver results",
    intro:
      "We build services around your goals. Each service clarifies: how it helps, the value, and the expected outcome.",
    items: [
      {
        title: "Web design",
        desc:
          "We design websites that don’t stop at aesthetics—built for UX and conversion.",
        outcome: "Higher conversion + stronger trust + faster performance",
      },
      {
        title: "App development",
        desc:
          "Web/mobile apps that simplify operations, boost engagement, and scale with growth.",
        outcome: "Smooth UX + scalability + stability",
      },
      {
        title: "Enterprise systems",
        desc:
          "Dashboards, internal portals, workflow automation, and integrations.",
        outcome: "Higher efficiency + clarity + fewer errors",
      },
      {
        title: "Data analytics",
        desc:
          "KPI dashboards and reporting connected to actionable decisions.",
        outcome: "Better decisions + clearer insight + continuous improvement",
      },
      {
        title: "Government solutions",
        desc:
          "Trusted delivery with accessibility, security, and governance in mind.",
        outcome: "Compliance + trust + better citizen experience",
      },
      {
        title: "Entrepreneur solutions",
        desc:
          "MVP and product delivery with clear scope and fast iterations.",
        outcome: "Faster time-to-market + faster learning + growth",
      },
    ],
  },
  portfolio: {
    title: "Real results from our projects",
    intro:
      "We deliver projects with a clear problem, the right solution, and measurable outcomes.",
    items: [
      {
        title: "B2B Corporate Website (conversion-first)",
        category: "Websites",
        problem:
          "The old site described services generically with no clear request path—good traffic, low-quality leads.",
        solution:
          "Restructured into conversion-focused service pages + improved decision UX + clear CTAs + short contact flow with conversion event tracking.",
        result:
          "Higher lead quality and fewer irrelevant inquiries, with a steady uplift in qualified “Start your project” requests as the funnel became clearer.",
        image: {
          src: "/portfolio/website-b2b.jpg",
          alt: "A real laptop photo showing a website on screen",
        },
        tech: ["Next.js", "TypeScript", "Tailwind", "SEO", "Analytics"],
      },
      {
        title: "Mobile Order Management App (retail chain)",
        category: "Apps",
        problem:
          "Orders came from WhatsApp/calls/website, causing logging errors and unclear order status for customers.",
        solution:
          "Customer mobile app + branch admin panel: order creation, status tracking, notifications, adjustable delivery/pricing rules, and operator roles.",
        result:
          "Fewer operational mistakes and a clearer customer experience through status visibility and notifications—leading to better fulfillment consistency and repeat orders over time.",
        image: {
          src: "/portfolio/mobile-orders.jpg",
          alt: "A phone photo showing an app interface on screen",
        },
        tech: ["React Native", "API", "RBAC", "Notifications"],
      },
      {
        title: "KPI Dashboard for leadership reporting",
        category: "Data Analytics",
        problem:
          "Data existed across systems and spreadsheets, but leadership lacked a single trusted KPI view and spent time building manual reports.",
        solution:
          "Light ETL + unified KPI definitions + an interactive dashboard with filters/segments and threshold-based alerts.",
        result:
          "Less time spent preparing recurring reports and faster decision-making through consistent KPIs that teams can review, iterate, and trust.",
        image: {
          src: "/portfolio/dashboard-kpi.jpg",
          alt: "A laptop photo showing analytics charts and dashboard",
        },
        tech: ["Data Modeling", "BI", "ETL", "Dashboards"],
      },
      {
        title: "Premium E-commerce (checkout optimization)",
        category: "Websites",
        problem:
          "High cart abandonment due to slow pages, too many checkout steps, and unclear shipping/fees.",
        solution:
          "Core Web Vitals improvements + simplified checkout + early clarity on shipping/fees + trust content (returns/warranty).",
        result:
          "Steady improvement in checkout completion and fewer pre-purchase questions—because the customer journey became faster and clearer.",
        image: {
          src: "/portfolio/ecommerce-checkout.jpg",
          alt: "A real photo of a laptop and tablet showing an e-commerce interface",
        },
        tech: ["Next.js", "Payments", "Caching", "CDN", "SEO"],
      },
      {
        title: "Excel Automation for finance & procurement reporting",
        category: "Excel",
        problem:
          "Monthly reporting relied on copy/paste workflows, version conflicts, and avoidable human errors—delaying close.",
        solution:
          "Template redesign + Power Query for import/cleaning + Power Pivot modeling + a minimal macro to generate reports reliably, with a handover guide.",
        result:
          "Less time to produce reports and fewer mistakes, with better traceability to source data—making monthly close more predictable.",
        image: {
          src: "/portfolio/excel-reporting.jpg",
          alt: "A real photo showing spreadsheet work on a laptop",
        },
        tech: ["Excel", "Power Query", "Power Pivot", "VBA"],
      },
    ],
  },
  about: {
    title: "About",
    intro: "We are a team specialized in building digital solutions for growth.",
    bullets: [
      "Quality and performance first",
      "We work as a long-term technical partner",
      "From requirements to measurable outcomes",
    ],
    visionTitle: "Vision",
    vision: "To become the first choice for premium digital solutions",
  },
  contact: {
    title: "Start now",
    intro: "Tell us about your project and we’ll propose the right solution",
    form: {
      name: "Name",
      email: "Email",
      message: "Message",
      note:
        "This form can be connected later via SMTP or an API depending on hosting (Vercel or cPanel).",
      success: "We received your message. We’ll get back to you soon.",
      error: "Something went wrong. Try again or contact us on WhatsApp.",
    },
  },
  footer: {
    rights: "All rights reserved",
    email: "Email",
  },
} satisfies Dict;

export function getDict(lang: Lang): Dict {
  return lang === "en" ? en : ar;
}

