This repository was archived by the owner on Feb 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 542
Expand file tree
/
Copy pathChooseSection.jsx
More file actions
78 lines (76 loc) · 4.67 KB
/
ChooseSection.jsx
File metadata and controls
78 lines (76 loc) · 4.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import React from 'react';
import { translate } from '../../../common/i18n';
import { getLanguageBase } from '../../../common/lang';
const ChooseSection = () => (
<section className='binary-choose-wrapper'>
<div className='binary-choose-wrapper-inner binary-section-container'>
<h1 className='binary-choose-wrapper-inner-title'>{translate('Everything you love about Binary.com and more')}</h1>
<div className='binary-choose-wrapper-inner-section-content'>
<div className='binary-choose-wrapper-inner-left'>
<div className='binary-choose-wrapper-inner-left-content'>
<div className='binary-choose-wrapper-inner-placeholder'>
<img src="image/trading-platforms.svg" />
</div>
<div className='binary-choose-wrapper-inner-description'>
<h1>{translate('7 platforms to choose from')}</h1>
<h2>{translate('You’ll find SmartTrader and Binary Bot alongside new platforms like DTrader and Deriv X. Whatever your trading style, we’ve got the platform for you.')}</h2>
</div>
</div>
<div className='binary-choose-wrapper-inner-left-content'>
<div className='binary-choose-wrapper-inner-placeholder'>
<img src="image/trade-types.svg" />
</div>
<div className='binary-choose-wrapper-inner-description'>
<h1>{translate('3 trade types')}</h1>
<h2>{translate('Trade CFDs, digital options, and multipliers — a new exciting trade type that boosts your potential profits with limited risk.')}</h2>
</div>
</div>
<div className='binary-choose-wrapper-inner-right-content'>
<div className='binary-choose-wrapper-inner-placeholder'>
<img src="image/fiat-on-ramp.svg" />
</div>
<div className='binary-choose-wrapper-inner-description'>
<h1 className='mb0'>{translate('Crypto deposits via fiat on-ramp')}</h1>
<h2>{translate('Make crypto deposits easily via exchange services such as Banxa.')}</h2>
</div>
</div>
</div>
<div className='binary-choose-wrapper-inner-right'>
<div className='binary-choose-wrapper-inner-right-content'>
<div className='binary-choose-wrapper-inner-placeholder'>
<img src="image/instruments.svg" />
</div>
<div className='binary-choose-wrapper-inner-description'>
<h1>{translate('Over 100+ instruments')}</h1>
<h2>{translate('Trade what you like — forex, commodities, stocks, stock indices, and derived indices.')}</h2>
</div>
</div>
<div className='binary-choose-wrapper-inner-left-content'>
<div className='binary-choose-wrapper-inner-placeholder'>
<img src="image/market_types.svg" />
</div>
<div className='binary-choose-wrapper-inner-description'>
<h1>{translate('5 market types')}</h1>
<h2>{translate('Expand your portfolio with a wide range of markets such as forex, stocks, cryptocurrencies, derived, and more.')}</h2>
</div>
</div>
<div className='binary-choose-wrapper-inner-right-content'>
<div className='binary-choose-wrapper-inner-placeholder'>
<img src="image/support.svg" />
</div>
<div className='binary-choose-wrapper-inner-description'>
<h1>{translate('Support when you need it')}</h1>
<h2>{translate('Get round-the-clock customer support and access to the Help centre.')}</h2>
</div>
</div>
</div>
</div>
<div className="binary-choose-wrapper-inner_btn">
<a href={getLanguageBase('deriv')}>
<button className="l-btn danger">{translate('Explore Deriv now')}</button>
</a>
</div>
</div>
</section>
);
export default ChooseSection;