interface ToolsInterface {
	title: string;
	toolInfo: string;
	listTextOne: string;
	listTextSecond: string;
	listTextThird: string;
	description: string;
	buttonTitle: string;
	listTextFourth: string;
}

interface ToolsWordingInteface {
	cashFlowAnalysis: { props: ToolsInterface };
	moneyForCeos: {
		props: ToolsInterface;
	};
	moneyForGrowth: {
		props: ToolsInterface;
	};
	dashboard: {
		props: ToolsInterface;
	};
}

const toolsWording: ToolsWordingInteface = {
	cashFlowAnalysis: {
		props: {
			title: 'Cash Flow Analytics. ',
			description:
				'An automated tool for measuring your cash flow performance. ' +
				'A set of KPIs to help you stay focused on keeping your cash flow healthy. ',
			listTextOne: 'Create the cash flow picture of business',
			toolInfo: 'Use this tool:',
			listTextSecond: 'Identify opportunities for improvement',
			listTextThird: 'For management reporting and board meetings',
			listTextFourth: '',
			buttonTitle: 'View cash flow analysis'
		}
	},
	moneyForCeos: {
		props: {
			title: 'Money Multiplier for CEOs. ',
			description:
				'An automated tool for making business decisions \n' +
				'that improve cash flow and profit and boost your \n' +
				'business value and returns. As a bonus, \n' +
				'you get to use a tool for automated business valuation \n' +
				'resulting from the business improvements. ',
			listTextOne: 'For business improvements',
			toolInfo: 'Use this tool for:',
			listTextSecond: 'Business decisions',
			listTextThird: 'To shift your cash flow and profit from negative to positive',
			listTextFourth: 'Automate your business valuation',
			buttonTitle: 'View money multiplier for CEOs'
		}
	},
	moneyForGrowth: {
		props: {
			title: 'Money For Growth. ',
			description: 'An automated tool to help you stay cash flow positive during growth',
			listTextOne: 'Discover if you are burning cash with growth',
			toolInfo: 'Use this tool to: ',
			listTextSecond: 'Set the appropriate growth strategy. ',
			listTextThird: 'Assess your funding gap ',
			listTextFourth: 'Determine your funding requirements',
			buttonTitle: 'View money for growth'
		}
	},
	dashboard: {
		props: {
			title: 'Dashboard. ',
			description: 'You can preview all your calculations charts here',
			listTextOne: '',
			toolInfo: '',
			listTextSecond: '',
			listTextThird: '',
			listTextFourth: '',
			buttonTitle: 'View dashboard'
		}
	}
};

export default toolsWording;
