Untitled

 avatar
unknown
plain_text
a month ago
4.1 kB
5
Indexable
const stepsData = {
      steps: {
        step1: {
          heading: "What best describes your company’s industry?",
          tag: "Industry",
          options: [
            {
              name: "Professional services or consulting",
              terminated: true,
            },
            {
              name: "Automotive",
              terminated: true,
            },
            {
              name: "Construction materials and building materials",
              terminated: false,
            },
            {
              name: "Construction contracting",
              terminated: true,
            }
          ]
        },
        step2: {
          heading: "What is your company’s annual revenue in USD, from all locations and subsidiaries worldwide?",
          tag: "Revenue",
          options: [
            {
              name: "Less $40M",
              terminated: true,
            },
            {
              name: "$40M - $50M",
              terminated: true,
            },
            {
              name: "$51M - $80M",
              terminated: false,
            },
            {
              name: "$81M - $250M",
              terminated: false,
            },
            {
              name: "$251M - $400M",
              terminated: false,
            },
            {
              name: "$401M - $500M",
              terminated: false,
            },
            {
              name: "$501M - $800M",
              terminated: false,
            },
            {
              name: "$801M - $2.5B",
              terminated: false,
            },
            {
              name: "$2.5B - $5B",
              terminated: false,
            },
            {
              name: "$5B or more",
              terminated: false,
            }
          ]
        },
        step3: {
          heading: "Which of the following best describes your company? Select all that apply.",
          tag: "SKU11223",
          options: [
            {
              name: "My company has one or more international offices, facilities/factories, or subsidiaries outside of where it is headquartered",
              terminated: false,
            },
            {
              name: "My company sells goods or services to international customers in markets outside of where it is headquartered",
              terminated: false,
            },
            {
              name: "My company buys inputs from markets outside of where it is headquartered",
              terminated: true,
            },
            {
              name: "None of the above",
              terminated: true,
            }
          ]
        },
        step4: {
          heading: "Which international market are you interested in expanding to?  This self-diagnostic will assess your strengths and areas for improvement in expanding into that market.",
          sku: "SKU44556",
          options: [
            {
              name: "List of international markets",
              terminated: false
            },
          ]
        },
        step5: {
          heading: "What best describes your knowledge of your company’s international business operations in TargetMarket?",
          sku: "SKU77889",
          options: [
            {
              name: "I have a comprehensive understanding of my company’s operations in TargetMarket",
              terminated: false
            },
            {
              name: "I have good knowledge",
              terminated: false,
            },
            {
              name: "I have moderate knowledge",
              terminated: true,
            },
            {
              name: "I have limited knowledge",
              terminated: true,
            },
            {
              name: ". I know nothing about my company’s international operations in TargetMarket ",
              terminated: true,
            }
          ]
        }
      }
    };
Leave a Comment