-
Notifications
You must be signed in to change notification settings - Fork 0
/
objections.js
9 lines (5 loc) · 997 Bytes
/
objections.js
1
2
3
4
5
6
7
8
9
var objections_gateswinger = `Typical objections of a gateswinger type customer are: Should I spend so much money on something this new? Is this really going to get me the performance promised? Do I really need this new tech at all?`
var objections_progressive = `Typical objections of a progressive type customer are: Does the benefit outweigh the cost and headaches of making a radical change? is this design really the best solution?`
var objections_relationship = `Typical objections of a relationship type customer tend to revolve around the issues brought up by customer's in-house experts such as: Can you meet our special specifications and delivery requirements? Price is an issue but not the most important one.`
var objections_world = `Typical objections of a world type customer are: is this the cheapest price? What happens if there is a problem after the sale?`
export var objections = [objections_gateswinger, objections_progressive, objections_relationship, objections_world];