-
Notifications
You must be signed in to change notification settings - Fork 183
Mitra/Reusable hero banner #4135
Mitra/Reusable hero banner #4135
Conversation
The latest updates on your projects. Learn more about Vercel for Git βοΈ
|
β‘οΈ Lighthouse report for the changes in this PR:
Lighthouse ran on https://deriv-com-git-fork-mitra-deriv-reusable-hero-banner.binary.sx/ |
Kudos, SonarCloud Quality Gate passed!Β Β
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mitra-deriv Just a suggestion, instead of derivez-logo.svg
, It's better to have the icon and the text logo as separate files, So later in the code, if needed we can use them separately or put them together with the code, So we wonβt need to add a new asset again in the future if we need the logo.
type TProps = { | ||
color?: string | ||
angle?: number | ||
src?: string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mitra-deriv src
is not used anywhere, It's only in the type, Maybe we can remove it? π€
color?: string | ||
angle?: number | ||
src?: string | ||
children?: ReactNode |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
children?: ReactNode |
@mitra-deriv Instead use React.PropsWithChildren
generic.
` | ||
const ShapeStyle = styled.div<Pick<TProps, 'angle'>>` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
` | |
const ShapeStyle = styled.div<Pick<TProps, 'angle'>>` | |
` | |
const ShapeStyle = styled.div<Pick<TProps, 'angle'>>` |
` | ||
const BackgroundStyle = styled.div<Pick<TProps, 'color'>>` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
` | |
const BackgroundStyle = styled.div<Pick<TProps, 'color'>>` | |
` | |
const BackgroundStyle = styled.div<Pick<TProps, 'color'>>` |
Just some spacing between variables for better readability ππ»
return ( | ||
<ContainerStyle> | ||
<ShapeStyle angle={angle}> | ||
<BackgroundStyle color={color}></BackgroundStyle> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<BackgroundStyle color={color}></BackgroundStyle> | |
<BackgroundStyle color={color} /> |
` | ||
const ContentWrapperStyle = styled.div` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
` | |
const ContentWrapperStyle = styled.div` | |
` | |
const ContentWrapperStyle = styled.div` |
` | ||
const HeroImageWrapper = styled.div` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
` | |
const HeroImageWrapper = styled.div` | |
` | |
const HeroImageWrapper = styled.div` |
} | ||
` | ||
|
||
const Hero = () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const Hero = () => { | |
const Hero: React.FC = () => { |
const { is_mobile } = useBreakpoints() | ||
return ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const { is_mobile } = useBreakpoints() | |
return ( | |
const { is_mobile } = useBreakpoints() | |
return ( |
<BackgroundStyle> | ||
<ContentWrapperStyle> | ||
<Content> | ||
<img width="237px" height="64px" src={DerivEZLogo} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mitra-deriv Maybe we can create a reusable component for platform logos since they will be used in many places, As I mentioned in the assets we can have the logo and text logo separately, and then in this component, you can put them together, and use it everywhere, Something like the following:
type TProps = {
platform: 'deriv_ez' | 'deriv_go' | 'deriv_p2p' | ...
visibility?: 'both' | 'icon' | 'text'
size?: 'small' | 'medium' | 'large'
}
const PlatformLogo: React.FC<TProps> = ({ platform, visibility = 'both', size = 'medium' }) => ...
<PlatformLogo platform="deriv_ez" />
<PlatformLogo platform="deriv_p2p" visibility="icon" />
<PlatformLogo platform="deriv_go" visibility="text" size="large" />
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@farzin-deriv Thanks for the time and Reviewing the PR , I will resolve them in another branch and mark the conversations as resolved once it is done π πΉ
About the platforms logos just to be sure I got your point correctly, You mean we create a component which accepts the icon
(the red one) + text
(which here is deriv ez ) ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not accepting icon and text as props, The component will handle it internally. Let's have a talk when you have time so I can explain it ππ»
* feat: β¨ hero component * fix: π add a empty line * fix: π fix naming
* habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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: β¨ 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 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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: β¨ add reusable component for button (#4100) * feat: β¨ 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 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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: β¨ add reusable component for button (#4100) * feat: β¨ 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 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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: β¨ hero component * fix: π add a empty line * fix: π 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 7648e09. * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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 7648e09. * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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 7648e09. * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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 7648e09. * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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]> * feat: rebrand forex * fix: fix width * fix: width mobile --------- 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]> Co-authored-by: mitra-deriv <[email protected]> Co-authored-by: mohammad-hashemi-deriv <[email protected]>
* habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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: β¨ 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 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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: β¨ add reusable component for button (#4100) * feat: β¨ 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 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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: β¨ add reusable component for button (#4100) * feat: β¨ 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 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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]> * feat: cfds rebranded * Mitra/Reusable hero banner (#4135) * feat: β¨ hero component * fix: π add a empty line * fix: π 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 7648e09. * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09. * feat: add 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]> * fix: fix package * fix: derived desc --------- 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]> Co-authored-by: mitra-deriv <[email protected]> Co-authored-by: mohammad-hashemi-deriv <[email protected]>
* habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/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 <[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]> * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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-translβ¦
* habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/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 <[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]> * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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-tβ¦
* habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/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 <[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]> * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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β¦
* habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/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 <[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]> * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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-tranβ¦
* Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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]> * feat: added new steps slider * feat: working on Dtrader page * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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 β¦
* 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β¦
* Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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]> * feat: added new steps slider * feat: working on Dtrader page * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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 packagβ¦
* Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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]> * feat: added new steps slider * feat: working on Dtrader page * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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 β¦
* 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 * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add title and subtitle component * fix: change name Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * chore: add assets * fix: live price table updates * 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]> * fix: trading spec initail updates * fix: refactored market tabs * fix: implemented pagination * fix: commodity data added * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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: search filter and added data for all markets * 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]> * fix: improvements * 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]> * fix: msg json update * fix: fixed page size * fix: fixed clear search * Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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].β¦
* Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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β¦
* 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].β¦
* 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]β¦
* Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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β¦
* 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]β¦
* 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]β¦
* Konstantinos / Ubuntu font (#4088) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add ubuntu font * feat: change weight * feat: change weight and delete file Co-authored-by: Habib Deriv <[email protected]> Co-authored-by: Konstantinos-Gk <[email protected]> * Konstantinos / Reusable title (#4087) * habib/Add trade types component initial (#4076) * chore: add component initial * chore: update full width container for product pages * Habib/fix vercel issue rebranding (#4084) * chore: update package-lock * chore: update package * Revert "Habib/fix vercel issue rebranding (#4084)" (#4085) This reverts commit 7648e09aadb6a1ce4f3789c16a43a1ef5bb242b4. * feat: add 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β¦
* 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]β¦
* 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]β¦
* 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]β¦
* 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β¦
* 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β¦
* 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]β¦
* 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]β¦
* 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]β¦
β¦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β¦
Changes:
Co-authored-by: @farzin-deriv
Type of change