Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Nikolai.berestevich/refactor/remove alt tags landing derivx 40113 #1967

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/pages/derivx/_why-trade-derivx.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,23 +78,20 @@ const trading = [
const card_data = [
{
icon: IconNewPromising,
icon_alt: 'New and promising',
title: <Localize translate_text="New and promising" />,
subtitle: (
<Localize translate_text="Deriv X is our second CFD platform, after MT5. It’s packed with features and built to fit your trading style." />
),
},
{
icon: IconMultipleMarketing,
icon_alt: 'Multiple markets on a single platform',
title: <Localize translate_text="Multiple markets on a single platform" />,
subtitle: (
<Localize translate_text="Trade various assets in multiple markets simultaneously." />
),
},
{
icon: Icon24_7,
icon_alt: '24/7 trading',
title: <Localize translate_text="24/7 trading" />,
subtitle: (
<Localize translate_text="Trade cryptocurrencies and synthetic indices anytime, even on weekends and holidays." />
Expand All @@ -115,7 +112,7 @@ const WhyTradeDerivX = () => {
return (
<Card key={index.title}>
<div>
<img src={index.icon} alt={index.icon_alt} />
<img src={index.icon} alt="" />
</div>
<Header
width="240px"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/landing/stocks/_whyTradeWIthUs.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const WhyTradeWithUs = ({ itemsArr, mainTitle, columnPerRow }) => {
{itemsArr.map((item, index) => {
return (
<Card direction="column" key={index} width={CardWidth}>
<StyledImage src={item.icon} alt={item.image_alt} />
<StyledImage src={item.icon} alt="" />
<StyledIconTitle
as="h4"
weight="normal"
Expand Down
6 changes: 0 additions & 6 deletions src/pages/landing/stocks/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,32 +38,26 @@ const WhyTradeWithUsArr = [
{
title: <Localize translate_text="Extended market hours" />,
icon: ExtendedTimeSVG,
image_alt: localize('extended market hours'),
},
{
title: <Localize translate_text="No commissions" />,
icon: NoCommisionSVG,
image_alt: localize('no commissions'),
},
{
title: <Localize translate_text="High leverage" />,
icon: HighLeverageSVG,
image_alt: localize('high leverage'),
},
{
title: <Localize translate_text="12+ world indices" />,
icon: TwelveIndicesSVG,
image_alt: localize('world indices'),
},
{
title: <Localize translate_text="40+ stocks" />,
icon: FourtyStocksSVG,
image_alt: localize('40 stocks'),
},
{
title: <Localize translate_text="Low capital requirement" />,
icon: LowCapitalSVG,
image_alt: localize('low capital'),
},
]

Expand Down