-
Notifications
You must be signed in to change notification settings - Fork 183
Pr 85511 rebrand home page #4115
Pr 85511 rebrand home page #4115
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-fasihali-deriv-pr-85511-rebrand-home-page.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
* refactor: banner * chore: worked on home page rebranding * perf: updated optimised images * fix: updated image with optimized size --------- Co-authored-by: Muhammad Fasih <[email protected]>
is_ppc?: boolean | ||
} | ||
|
||
const ArabicBannerData = ({ is_ppc }: HeroProps) => { |
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 ArabicBannerData = ({ is_ppc }: HeroProps) => { | |
const ArabicBannerData = ({ is_ppc = false }: HeroProps) => { |
@fasihali-deriv It's better to set a default value whenever we have a boolean prop instead of lying on undefined
. Same for other places.
} | ||
} | ||
` | ||
type HeroProps = { |
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.
type HeroProps = { | |
type TProps = { |
@fasihali-deriv It's better to prefix the types with T
for better readability so we know it's a type
.
Not sure what is the convention in deriv-com repo so maybe you can ignore this comment ππ»
{is_eu ? ( | ||
is_mobile_or_tablet ? ( | ||
<EuMobileBannerData is_ppc={is_ppc} /> | ||
) : ( | ||
<EuBannerData is_ppc={is_ppc} /> | ||
) | ||
) : is_mobile_or_tablet ? ( | ||
<RowMobileBannerData is_ppc={is_ppc} /> | ||
) : ( | ||
<RawBannerData is_ppc={is_ppc} /> | ||
)} |
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.
@fasihali-deriv Let's use the Return Early
pattern instead of nested ternary conditions ππ»
currentImageName: string | ||
} | ||
|
||
const InfiniteSlideshow: React.FC<Props> = ({ images, children }) => { |
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 InfiniteSlideshow: React.FC<Props> = ({ images, children }) => { | |
const InfiniteSlideshow: React.FC<React.PropsWithChildren<TProps>> = ({ images, children }) => { |
interface Props { | ||
images: 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.
interface Props { | |
images: string[] | |
children?: ReactNode | |
} | |
type TProps = { | |
images: string[] | |
} |
|
||
const InfiniteSlideshow: React.FC<Props> = ({ images, children }) => { | ||
const { is_mobile_or_tablet } = useBreakpoints() | ||
const [currentImageIndex, setCurrentImageIndex] = useState<State['currentImageIndex']>(0) |
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 [currentImageIndex, setCurrentImageIndex] = useState<State['currentImageIndex']>(0) | |
const [currentImageIndex, setCurrentImageIndex] = useState(0) |
|
||
useEffect(() => { | ||
if (imageDataSize > 1) { | ||
const intervalId = setInterval(() => { |
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.
@fasihali-deriv You can use setTimeout
instead because every time currentImageIndex
changes you are canceling the interval and creating a new one, So it never runs more than once.
}, 3000) | ||
return () => clearInterval(intervalId) |
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.
}, 3000) | |
return () => clearInterval(intervalId) | |
}, 3000) | |
return () => clearInterval(intervalId) |
|
||
return ( | ||
<Background | ||
data={images['image_' + currentImageIndex] || images['image_' + imageDataSize]} |
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.
data={images['image_' + currentImageIndex] || images['image_' + imageDataSize]} | |
data={images[currentImageIndex]} |
@fasihali-deriv Just a suggestion, To make this component more generic you can leave the data transformation to the parent that provides the data, So here you just loop over the array and donβt need to know about the file name, In the parent component before passing the data to this component you can map the data and transform it to the desired schema.
|
||
const RawMobileBannerData = ({ is_ppc }: HeroProps) => { | ||
const data = useStaticQuery(query) | ||
console.log('here in mobile view banners') |
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.
console.log('here in mobile view banners') |
* 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]> * 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:
Type of change