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.

Pr 85511 rebrand home page #4115

Conversation

fasihali-deriv
Copy link
Contributor

Changes:

  • ...

Type of change

  • Bug fix
  • New feature
  • Update feature
  • Refactor code
  • Translation to code
  • Translation to crowdin
  • Script configuration
  • Improve performance
  • Style only
  • Dependency update
  • Documentation update
  • Release

@vercel
Copy link

vercel bot commented Jan 31, 2023

The latest updates on your projects. Learn more about Vercel for Git β†—οΈŽ

Name Status Preview Updated
deriv-com βœ… Ready (Inspect) Visit Preview Feb 9, 2023 at 2:50AM (UTC)

@github-actions
Copy link
Contributor

github-actions bot commented Jan 31, 2023

⚑️ Lighthouse report for the changes in this PR:

Category Score
πŸ”΄ Performance 49
🟒 Accessibility 96
🟠 Best practices 86
🟠 SEO 86
🟠 PWA 71

Lighthouse ran on https://deriv-com-git-fork-fasihali-deriv-pr-85511-rebrand-home-page.binary.sx/

@fasihali-deriv fasihali-deriv changed the base branch from master to rebranding-deriv February 1, 2023 04:02
@sonarqubecloud
Copy link

sonarqubecloud bot commented Feb 9, 2023

Kudos, SonarCloud Quality Gate passed!Β  Β  Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

Copy link
Contributor

@habib-deriv habib-deriv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@habib-deriv habib-deriv merged commit 517151b into binary-com:rebranding-deriv Feb 9, 2023
habib-deriv pushed a commit that referenced this pull request Feb 10, 2023
* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>
is_ppc?: boolean
}

const ArabicBannerData = ({ is_ppc }: HeroProps) => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
const ArabicBannerData = ({ is_ppc }: HeroProps) => {
const ArabicBannerData = ({ is_ppc = false }: HeroProps) => {

@fasihali-deriv It's better to set a default value whenever we have a boolean prop instead of lying on undefined. Same for other places.

}
}
`
type HeroProps = {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
type HeroProps = {
type TProps = {

@fasihali-deriv It's better to prefix the types with T for better readability so we know it's a type.

Not sure what is the convention in deriv-com repo so maybe you can ignore this comment πŸ™‡πŸ»

Comment on lines +33 to +43
{is_eu ? (
is_mobile_or_tablet ? (
<EuMobileBannerData is_ppc={is_ppc} />
) : (
<EuBannerData is_ppc={is_ppc} />
)
) : is_mobile_or_tablet ? (
<RowMobileBannerData is_ppc={is_ppc} />
) : (
<RawBannerData is_ppc={is_ppc} />
)}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fasihali-deriv Let's use the Return Early pattern instead of nested ternary conditions πŸ™πŸ»

currentImageName: string
}

const InfiniteSlideshow: React.FC<Props> = ({ images, children }) => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
const InfiniteSlideshow: React.FC<Props> = ({ images, children }) => {
const InfiniteSlideshow: React.FC<React.PropsWithChildren<TProps>> = ({ images, children }) => {

Comment on lines +7 to +10
interface Props {
images: string[]
children?: ReactNode
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
interface Props {
images: string[]
children?: ReactNode
}
type TProps = {
images: string[]
}


const InfiniteSlideshow: React.FC<Props> = ({ images, children }) => {
const { is_mobile_or_tablet } = useBreakpoints()
const [currentImageIndex, setCurrentImageIndex] = useState<State['currentImageIndex']>(0)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
const [currentImageIndex, setCurrentImageIndex] = useState<State['currentImageIndex']>(0)
const [currentImageIndex, setCurrentImageIndex] = useState(0)


useEffect(() => {
if (imageDataSize > 1) {
const intervalId = setInterval(() => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fasihali-deriv You can use setTimeout instead because every time currentImageIndex changes you are canceling the interval and creating a new one, So it never runs more than once.

Comment on lines +36 to +37
}, 3000)
return () => clearInterval(intervalId)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
}, 3000)
return () => clearInterval(intervalId)
}, 3000)
return () => clearInterval(intervalId)


return (
<Background
data={images['image_' + currentImageIndex] || images['image_' + imageDataSize]}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
data={images['image_' + currentImageIndex] || images['image_' + imageDataSize]}
data={images[currentImageIndex]}

@fasihali-deriv Just a suggestion, To make this component more generic you can leave the data transformation to the parent that provides the data, So here you just loop over the array and don’t need to know about the file name, In the parent component before passing the data to this component you can map the data and transform it to the desired schema.


const RawMobileBannerData = ({ is_ppc }: HeroProps) => {
const data = useStaticQuery(query)
console.log('here in mobile view banners')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
console.log('here in mobile view banners')

habib-deriv added a commit that referenced this pull request Feb 22, 2023
* Konstantinos / The words β€œnot available” in the payment methods section is misleading, this needs to be revised (#4188)

* fix: fix not available

* Apply suggestions from code review

Updated content from Not Applicable to Not applicable

---------

Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>

* Yaswanth/87208/pnl margin bugfix (#4154)

* refactor: adding hard lazy loading in cfd page

* refactor: adding hard lazy loading in cfd page

* refactor: adding hard lazy loading in cfd page

* refactor: adding hard lazy loading in cfd page

* refactor: plp margin calculator bug fix

* refactor: plp margin calculator bug fix

* Yaswanth/88385/pnl calculator console warning fix (#4173)

* refactor: adding hard lazy loading in cfd page

* refactor: adding hard lazy loading in cfd page

* refactor: adding hard lazy loading in cfd page

* refactor: adding hard lazy loading in cfd page

* refactor: plp margin calculator bug fix

* refactor: plp margin calculator bug fix

* refactor: hard lazy load in dmt5 page

* refactor: hard lazy loader in dmt5 page

* refactor: to fix console warning for pnl margin

* Translation [FE Deriv.com squad] 85828 NikitK / Derived FX, add Vol 20  (#4067)

* feat: update derived_dx data

* fix: path of image

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* auto-pull-translation

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* auto-pull-translation

* auto-pull-translation

* auto-pull-translation

* feat: update description text of derived-fx

* auto-pull-translation

* auto-pull-translation

* auto-pull-translation

* auto-pull-translation

* auto-pull-translation

* auto-pull-translation

* auto-pull-translation

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* Revert "Yaswanth/87208/pnl margin bugfix (#4154)" (#4190)

This reverts commit 4a3edd244225d3402b730a95b9e977641f18f35f.

* refactor: to fix pnl margin calculator issue (#4191)

* chore: update translation strings (#4195)

* Revert "Yaswanth/88385/pnl calculator console warning fix (#4173)" (#4199)

This reverts commit 6ffe151931f2f40f381f6a1d4412e43a78d05ca0.

* refactor: to fix pnl margin calculator issues (#4208)

* Konstantinos / [FE Deriv.com squad] Content changes need to be done on Locations pages. (#4203)

* fix: locations changes

* fix: job location name

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: update translation (#4212)

* fix: available tabs toggler (#4214)

* fix: update tnc pdf (#4160)

Co-authored-by: meenakshi-deriv <[email protected]>

* refactor: cleanup after academy movement (#4225)

* Fix IP cookie issue loop for login (#4204)

* chore: fix ip cookie issue

* chore: fix ip cookie issue

* chore: made country readonly

* Mitra/update uk office location (#4215)

* fix: :bug: update uk office location

* fix: :bug: change the map link

* fix: :bug: add comma and change quality of image

* Translation strings (#4235)

* chore: translation strings

* chore: update code

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#40…
habib-deriv added a commit that referenced this pull request Mar 20, 2023
* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <kon…
@habib-deriv habib-deriv mentioned this pull request Mar 20, 2023
habib-deriv added a commit that referenced this pull request Mar 23, 2023
* Konstantinos / Conflicts 3 (#4364)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected].…
habib-deriv added a commit that referenced this pull request Mar 23, 2023
* Konstantinos / Conflicts 3 (#4364)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]…
habib-deriv added a commit that referenced this pull request Mar 24, 2023
* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <konstantinos.gkagi…
habib-deriv added a commit that referenced this pull request Mar 29, 2023
* Konstantinos / Conflicts 3 (#4364)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]…
habib-deriv added a commit that referenced this pull request Mar 29, 2023
* Konstantinos / Conflicts 3 (#4364)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]…
habib-deriv added a commit that referenced this pull request Mar 31, 2023
* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Kons…
habib-deriv added a commit that referenced this pull request Apr 4, 2023
* Konstantinos / Conflicts 3 (#4364)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]…
habib-deriv added a commit that referenced this pull request Apr 4, 2023
* Konstantinos / Conflicts 3 (#4364)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]…
habib-deriv added a commit that referenced this pull request Apr 5, 2023
* Konstantinos / Conflicts 3 (#4364)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]…
habib-deriv added a commit that referenced this pull request Apr 7, 2023
* Konstantinos / Conflicts 3 (#4364)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <88178645+habib-deriv@user…
habib-deriv added a commit that referenced this pull request Apr 7, 2023
* Konstantinos / Conflicts 3 (#4364)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <88178645+habib…
habib-deriv added a commit that referenced this pull request Apr 20, 2023
* Konstantinos / Conflicts 3 (#4364)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]…
habib-deriv added a commit that referenced this pull request Apr 28, 2023
* Konstantinos / Conflicts 3 (#4364)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]…
habib-deriv added a commit that referenced this pull request Apr 28, 2023
* Konstantinos / Conflicts 3 (#4364)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]…
habib-deriv added a commit that referenced this pull request May 31, 2023
…n - rebase to master (#4796)

* chore: fix media.scss

* chore: added other components in home page

* chore: added footer to the homepage

* chore: update home hero section

* chore: added lazy inView feature

* chore: updated lazy rendering

* feat: added atomic design components

- added new components based on atomic design with sass
- provided sass mixin for better styling setup

* chore: moved SpaceProps out box component

* chore: fixed chevron icon on accordion

* chore: updated home hero margin

* chore: updated mixins

* chore: updated sizes variables

* chore: new design system

* chore: fix typography and spacing

* chore: fixed buttons and mixins

* chore: updated spacing mixins

* chore: renamed layout component

* chore: added new accordion component

* chore: added new non eu redirection alert

* Konstantinos / Conflicts 3 (#4364)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* feat: rebrand options page

* chore: fix

* chore: add import

* fix: change location of options content and fix imports and bugs

* chore: move option file

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Mitra/Reusable hero banner (#4135)

* feat: :sparkles: hero component

* fix: :bug: add a empty line

* fix: :bug: fix naming

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CFDs rebrand (#4142)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: cfds rebranded

* fix: fix package

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / CommonheaderSection improve (#4149)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* refactor: commonheadersection refactor

* fix: fix margin

* fix: tstring

* fix: tstring-

* chore: add localize

* fix: vercell

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Konstantinos / Multipliers Rebrand (#4146)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: multipliers page

* fix: update derived description

* chore: vercel

* fix: package update

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* Habib/rebranding deriv 8feb 1 (#4155)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* chore: addstrings (#4130)

* MohammadH/ Remove academy and fix staging (#4131)

* feat: remove the whole academy

* chore: save yml files without reformatting

* fix: remove cio from staging

* Fix staging after academy removal 2 (#4132)

* fix: remove cio from staging

* fix: change node version to 18 for staging

* docs: update application privacy policy (#4127)

* chore: revert-85720-card (#4133)

* Konstantinos / Updated Compliance PDF files (#4123)

* feat: update pdf files

* fix: package update

* chore: vercel

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* [FE Deriv.com squad] NikitK/ Footer for deriv.com website - DIEL_for_all (#4112)

* feat: update footer for africa and non eu users

* chore: return back is_non_eu variable and create new specific one

* feat: add comment for new variable

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* chore: update warning logic

* auto-pull-translation

* auto-pull-translation

* fix: disclaimer

* fix: add logic for ecuador

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

---------

Co-authored-by: DerivFE <[email protected]>

* chore: remove footer extra content (#4140)

* MohammadH/ Update all academy links (#4143)

* feat: update all academy links

* chore: update code owners list

* change locations text (#4136)

* change locations text

* address info without map

---------

Co-authored-by: Eduard Hrachou <[email protected]>

* NikitK/ Add references on some of the components for cypress automation (#3730)

* feat: reference on some of the components and a little bit refactoring

* feat: 3 more pages added. Fix by comments, change name of id value

* chore: remove console logs and trash

* chore: update name again

* chore: update the variable name

* feat: update names and add some

* chore: fix props properties

* chore: fix props properties

* chore: fix props properties

* chore: update names and approach for faq lists

* chore: trigger vercel

* chore: update names of refs

* feat: add more refencies

* chore: add ref

* feat: add more referencies for calculator accordions

* chore: resolve merge conflicts

* chore: remove extra unused file

* feat: add refs for calculators tab selectors and change besquare

---------

Co-authored-by: Nikita Kolesnik <[email protected]>

* Prince/ fetched latest crowdin translation (#4147)

* chore: fetched latest crowdin translation

* chore: fetch latest master crowdin

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Accumulators (#4134)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* feat: add accumulators without redirect

* fix: fix font

---------

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>

* chore: fix conflict from master

* chore: update from master

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: NikitK-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Eduard Hrachou <[email protected]>
Co-authored-by: Nikita Kolesnik <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>

* Pr 85511 rebrand home page (#4115)

* refactor: banner

* chore: worked on home page rebranding

* perf: updated optimised  images

* fix: updated image with optimized size

---------

Co-authored-by: Muhammad Fasih <[email protected]>

* chore: updated from master

* chore: updated from master

* chore: add gray angled column Section (#4169)

* chore: add error check on live market table (#4171)

* Konstantinos / Forex page rebrand (#4166)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* refactor: stepperview component (#4108)

Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable component for number section   (#4107)

* refactor: add new NumberSection component

* chore: remove unused code

---------

Co-authored-by: Konstantinos-Gk <[email protected]>

* Habib/multi row gray bg (#4113)

* chore: multiple row and multiple column combination

* chore: implement clean coding

* chore: add new button text

* chore: add ubuntu font for all header text

* chore: fix css issues

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* Fix type and API issues (#4116)

* chore: fix type issues

* chore: add todo for api

* chore: change content structure (#4120)

* Habib/content structure update (#4121)

* chore: change content structure

* chore: content structure update

* Habib/update master rebranding (#4128)

* chore: fetched latest master crowdin branch (#4119)

* MohammadH/ Remove the whole academy from source code (#4122)

* feat: remove the whole academy

* chore: save yml files without reformatting

* chore: translations (#4125)

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* chore: fetch latest translations (#4090)

* Mitra/Reusable button components with new design (#4114)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: tab fix

* fix: live price table updates

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>

* Habib/update attribute (#4098)

* Prince/ update workflow permissions (#4080)

* chore: update workflow permissions

* chore: undo unnecessary change

* chore: update attribute

Co-authored-by: prince-deriv <[email protected]>

* chore: fetch latest translations (#4090)

* chore: fix conflicts

* chore: :sparkles: add reusable component for button (#4100)

* feat: :sparkles: add new on hover colors

---------

Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>
Co-authored-by: habib-binary <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: prince-deriv <[email protected]>

* chore: add fixes

---------

Co-authored-by: prince-deriv <[email protected]>
Co-authored-by: mohammad-hashemi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: meenakshi-deriv <[email protected]>
Co-authored-by: DerivFE <[email protected]>
Co-authored-by: mitra-deriv <[email protected]>
Co-authored-by: konstantinosG-deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / [FE Deriv.com squad] [Rebranding] Trader Type - Options page  (#4118)

* Konstantinos /  Ubuntu font  (#4088)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add ubuntu font

* feat: change weight

* feat: change weight and delete file

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* Konstantinos / Reusable title (#4087)

* habib/Add trade types component initial (#4076)

* chore: add component initial

* chore: update full width container for product pages

* Habib/fix vercel issue rebranding (#4084)

* chore: update package-lock

* chore: update package

* Revert "Habib/fix vercel issue rebranding (#4084)" (#4085)

This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4.

* feat: add title and subtitle component

* fix: change name

Co-authored-by: Habib Deriv <[email protected]>
Co-authored-by: Konstantinos-Gk <[email protected]>

* chore: add assets

* Meenu/ live price rebranding (#4093)

* Habib/live market price (#3977)

* fix: live market pricing in homepage

* fix: implemented trending asset api

* fix: fixed pr failure

* fix: display only trending markets

* fix: package-lock dateformat

* fix: remove markets component

Co-authored-by: meenakshi-deriv <[email protected]>

* fix: update forex as default tab

* fix: fixed daily pervent change

* fix: fixed color change for daily percentage cell

* fix: updated css variables

* fix: comments resolving

* fix: resolving comments

* fix: fixed market description for each market

* fix undefined is not iterable error for Map()

* Add type data

* auto-pull-translation

* fix: fixed trade now button

* fix: updated login button

* fix: fixed space issue in safari

* auto-pull-translation

* fix: redirect button fix

* auto-pull-translation

* fix: updated to 5 rows

* auto-pull-translation

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* fix: eu condition applied

* fix: updated disclaimer text

* auto-pull-translation

* translation: πŸ“š sync translations from crowdin feature branch

* auto-pull-translation

* translation: πŸ“š sync tra…
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants