+
}
- rightComponent={}
+ rightComponent={
+
+ }
>
Trader's Hub
-
This is a footer
diff --git a/playground/platformsConfig.tsx b/playground/platformsConfig.tsx
new file mode 100644
index 00000000..5e7565e1
--- /dev/null
+++ b/playground/platformsConfig.tsx
@@ -0,0 +1,113 @@
+import React, { ReactNode } from "react";
+import {
+ DerivProductDerivTraderBrandLightLogoWordmarkHorizontalIcon,
+ DerivProductDerivBotBrandLightLogoWordmarkHorizontalIcon,
+ PartnersProductSmarttraderBrandLightLogoWordmarkIcon,
+ PartnersProductBinaryBotBrandLightLogoWordmarkHorizontalIcon,
+} from "@deriv/quill-icons/Logo";
+
+export type PlatformsConfig = {
+ href: string;
+ description: string;
+ icon: ReactNode;
+ buttonIcon: ReactNode;
+ active: boolean;
+ showInEU: boolean;
+};
+
+export const platformsConfig: PlatformsConfig[] = [
+ {
+ href: "https://app.deriv.com",
+ showInEU: true,
+ active: true,
+ description:
+ "A whole new trading experience on a powerful yet easy to use platform.",
+ icon: (
+
+ ),
+ buttonIcon: (
+
+ ),
+ },
+ {
+ href: "https://app.deriv.com/bot",
+ showInEU: false,
+ active: false,
+ description: "Automated trading at your fingertips. No coding needed.",
+ icon: (
+
+ ),
+ buttonIcon: (
+
+ ),
+ },
+ {
+ href: "https://smarttrader.deriv.com",
+ showInEU: false,
+ active: false,
+ description:
+ "Trade the world’s markets with our popular user-friendly platform.",
+ icon: (
+
+ ),
+ buttonIcon: (
+
+ ),
+ },
+ {
+ href: "https://bot.deriv.com",
+ showInEU: false,
+ active: false,
+ description:
+ "Our classic “drag-and-drop” tool for creating trading bots, featuring pop-up trading charts, for advanced users.",
+ icon: (
+
+ ),
+ buttonIcon: (
+
+ ),
+ },
+ {
+ href: "https://app.deriv.com",
+ showInEU: true,
+ active: false,
+ description:
+ "A whole new trading experience on a powerful yet easy to use platform.",
+ icon: (
+
+ ),
+ buttonIcon: (
+
+ ),
+ },
+];