diff --git a/src/components/ModeCards.tsx b/src/components/ModeCards.tsx index 808cc16..fdac035 100644 --- a/src/components/ModeCards.tsx +++ b/src/components/ModeCards.tsx @@ -1,3 +1,5 @@ +import { Link } from 'react-router-dom'; + export default function ModeCards() { return (
@@ -9,37 +11,69 @@ export default function ModeCards() {

-
-
- Directional -
-

UP/DOWN Mode

-

- Forecast price direction before the round closes. The majority side splits the pool — - fast rounds for market sentiment reads. -

-
    -
  • • 5-minute resolution windows
  • -
  • • Pool split by consensus
  • -
  • • Ideal for macro trend calls
  • -
-
+ +
+
+ Directional +
+

UP/DOWN Mode

+

+ Forecast price direction before the round closes. The majority side splits the pool — + fast rounds for market sentiment reads. +

+
    +
  • • 5-minute resolution windows
  • +
  • • Pool split by consensus
  • +
  • • Ideal for macro trend calls
  • +
+
+ Start Trading + + + +
+
+ -
-
- Precision -
-

Precision Mode

-

- Submit an exact price target at round close. Closest forecast wins the pool — built for - traders who read the tape. -

-
    -
  • • 15-minute analysis windows
  • -
  • • Closest prediction wins
  • -
  • • Higher skill ceiling
  • -
-
+ +
+
+ Precision +
+

Precision Mode

+

+ Submit an exact price target at round close. Closest forecast wins the pool — built for + traders who read the tape. +

+
    +
  • • 15-minute analysis windows
  • +
  • • Closest prediction wins
  • +
  • • Higher skill ceiling
  • +
+
+ Start Trading + + + +
+
+
); diff --git a/src/pages/ComingSoon.tsx b/src/pages/ComingSoon.tsx new file mode 100644 index 0000000..23da768 --- /dev/null +++ b/src/pages/ComingSoon.tsx @@ -0,0 +1,68 @@ +import { Link } from 'react-router-dom'; + +interface ComingSoonProps { + title: string; + description: string; + icon?: React.ReactNode; +} + +export default function ComingSoon({ title, description, icon }: ComingSoonProps) { + return ( +
+
+ {/* Decorative background elements */} +
+
+
+ +
+ {/* Icon */} + {icon ? ( +
{icon}
+ ) : ( +
+ + + +
+ )} + + {/* Title and Description */} +

{title}

+ +

{description}

+ + {/* Waitlist Info */} +
+

+ Launch Timeline +

+

+ We're building something special. Check back soon for updates. +

+
+ + {/* Back to Home */} +
+ + Back to Home + + + Notify Me + +
+
+
+
+ ); +}