- {contentType === 'image' && contentPosition !== 'background'
- ? imageBlock(illustrationImage)
- : null}
- {contentType === 'video' && contentPosition !== 'background'
- ? videoBlock(illustrationVideo)
- : null}
-
-
-
-
-
-
-
-
© 2026 {title} . All rights reserved
-
- Privacy Policy
-
-
+
+ {/* Hero Section */}
+
+
+
+
+
+ New: AI-Powered Trade Insights
+
+
+ Master Your Edge with Precision Analytics.
+
+
+ The ultra-premium trading journal designed for high-performance traders. Track performance, analyze psychology, and unlock AI insights to reach your goals.
+
+
+
+
+ {/* Dashboard Preview */}
+
+
+
+
+
+
dashboard.tradelogpro.ai
+
+
+ {[
+ { label: 'Total PnL', value: '+$12,450.00', color: 'text-green-400', icon: icon.mdiCurrencyUsd },
+ { label: 'Win Rate', value: '68.5%', color: 'text-[#0ea5e9]', icon: icon.mdiChartPie },
+ { label: 'Profit Factor', value: '2.4', color: 'text-purple-400', icon: icon.mdiTrendingUp }
+ ].map((stat, i) => (
+
+
+ {stat.label}
+
+
+
{stat.value}
+
+ ))}
+
+
+ {[40, 60, 45, 70, 85, 65, 90, 110, 95, 130, 150].map((h, i) => (
+
+ ))}
+
+
+
+
+
+ {/* Pricing Section */}
+
+
+
+
Choose Your Plan
+
Scale your trading with tools built for your success level.
+
+
+ {/* Free Tier */}
+
+
+
Free
+
$0/mo
+
Perfect for beginners tracking their first steps in the market.
+
+
+ {['Manual trade entry', 'Basic dashboard', 'Win Rate, PnL, Total Trades', 'Last 30 days history', 'Single account'].map((feat, i) => (
+
+
+ {feat}
+
+ ))}
+
+
+ Get Started
+
+
+
+ {/* $1 Tier */}
+
+
Most Popular
+
+
Pro
+
$1/mo
+
Comprehensive analytics for serious individual traders.
+
+
+ {['CSV bulk import', 'Full dashboard metrics', 'Equity curve visualization', 'Performance breakdowns', 'Trade duration analytics', 'Screenshot attachments', 'Mood/emotions tracker', 'Economic calendar'].map((feat, i) => (
+
+
+ {feat}
+
+ ))}
+
+
+ Go Pro Now
+
+
+
+ {/* $10 Tier */}
+
+
+
AI Elite
+
$10/mo
+
The ultimate edge with AI pattern recognition and insights.
+
+
+ {['Everything in Pro', 'AI-powered trade analysis', 'AI pattern recognition', 'Weakness identification', 'Risk size recommendations', 'Market condition classifier', 'Broker API auto-sync'].map((feat, i) => (
+
+
+ {feat}
+
+ ))}
+
+
+ Unlock Elite AI
+
+
+
+
+
+
+ {/* Footer */}
+
);
}
-Starter.getLayout = function getLayout(page: ReactElement) {
+LandingPage.getLayout = function getLayout(page: ReactElement) {
return
{page} ;
-};
-
+};
\ No newline at end of file
diff --git a/frontend/src/stores/styleSlice.ts b/frontend/src/stores/styleSlice.ts
index e786387..f8f307d 100644
--- a/frontend/src/stores/styleSlice.ts
+++ b/frontend/src/stores/styleSlice.ts
@@ -32,30 +32,30 @@ interface StyleState {
const initialState: StyleState = {
- asideStyle: styles.midnightBlueTheme.aside,
- asideScrollbarsStyle: styles.white.asideScrollbars,
- asideBrandStyle: styles.white.asideBrand,
- asideMenuItemStyle: styles.midnightBlueTheme.asideMenuItem,
- asideMenuItemActiveStyle: styles.midnightBlueTheme.asideMenuItemActive,
- activeLinkColor: styles.midnightBlueTheme.activeLinkColor,
- asideMenuDropdownStyle: styles.white.asideMenuDropdown,
- navBarItemLabelStyle: styles.midnightBlueTheme.navBarItemLabel,
- navBarItemLabelHoverStyle: styles.midnightBlueTheme.navBarItemLabelHover,
- navBarItemLabelActiveColorStyle: styles.midnightBlueTheme.navBarItemLabelActiveColor,
- overlayStyle: styles.midnightBlueTheme.overlay,
- darkMode: false,
- bgLayoutColor: styles.midnightBlueTheme.bgLayoutColor,
- iconsColor: styles.midnightBlueTheme.iconsColor,
- cardsColor: styles.midnightBlueTheme.cardsColor,
- focusRingColor: styles.midnightBlueTheme.focusRingColor,
- corners: styles.midnightBlueTheme.corners,
- cardsStyle: styles.midnightBlueTheme.cardsStyle,
- linkColor: styles.midnightBlueTheme.linkColor,
- websiteHeder: styles.midnightBlueTheme.websiteHeder,
- borders: styles.midnightBlueTheme.borders,
- shadow: styles.midnightBlueTheme.shadow,
- websiteSectionStyle: styles.midnightBlueTheme.websiteSectionStyle,
- textSecondary: styles.midnightBlueTheme.textSecondary,
+ asideStyle: styles.onyx.aside,
+ asideScrollbarsStyle: styles.onyx.asideScrollbars,
+ asideBrandStyle: styles.onyx.asideBrand,
+ asideMenuItemStyle: styles.onyx.asideMenuItem,
+ asideMenuItemActiveStyle: styles.onyx.asideMenuItemActive,
+ activeLinkColor: styles.onyx.activeLinkColor,
+ asideMenuDropdownStyle: styles.onyx.asideMenuDropdown,
+ navBarItemLabelStyle: styles.onyx.navBarItemLabel,
+ navBarItemLabelHoverStyle: styles.onyx.navBarItemLabelHover,
+ navBarItemLabelActiveColorStyle: styles.onyx.navBarItemLabelActiveColor,
+ overlayStyle: styles.onyx.overlay,
+ darkMode: true, // Force dark mode for premium feel
+ bgLayoutColor: styles.onyx.bgLayoutColor,
+ iconsColor: styles.onyx.iconsColor,
+ cardsColor: styles.onyx.cardsColor,
+ focusRingColor: styles.onyx.focusRingColor,
+ corners: styles.onyx.corners,
+ cardsStyle: styles.onyx.cardsStyle,
+ linkColor: styles.onyx.linkColor,
+ websiteHeder: styles.onyx.websiteHeder,
+ borders: styles.onyx.borders,
+ shadow: styles.onyx.shadow,
+ websiteSectionStyle: styles.onyx.websiteSectionStyle,
+ textSecondary: styles.onyx.textSecondary,
};
@@ -100,4 +100,4 @@ export const styleSlice = createSlice({
// Action creators are generated for each case reducer function
export const { setDarkMode, setStyle } = styleSlice.actions
-export default styleSlice.reducer
+export default styleSlice.reducer
\ No newline at end of file
diff --git a/frontend/src/styles.ts b/frontend/src/styles.ts
index 8eecb3a..f8a8f9e 100644
--- a/frontend/src/styles.ts
+++ b/frontend/src/styles.ts
@@ -108,6 +108,32 @@ export const dataGridStyles = {
},
};
+export const onyx: StyleObject = {
+ aside: "bg-[#121212] text-white",
+ asideScrollbars: "aside-scrollbars-gray",
+ asideBrand: "bg-[#0a0a0a] text-white",
+ asideMenuItem: "text-gray-400 hover:text-white hover:bg-[#1e1e1e]",
+ asideMenuItemActive: "font-bold text-white bg-[#0ea5e9]",
+ asideMenuDropdown: "bg-[#1e1e1e]",
+ navBarItemLabel: "text-white",
+ navBarItemLabelHover: "hover:text-[#0ea5e9]",
+ navBarItemLabelActiveColor: "text-[#0ea5e9]",
+ overlay: "bg-black/80",
+ activeLinkColor: "bg-[#0ea5e9]",
+ bgLayoutColor: "bg-[#0a0a0a]",
+ iconsColor: "text-[#0ea5e9]",
+ cardsColor: "bg-[#121212]",
+ focusRingColor: "focus:ring focus:ring-[#0ea5e9] focus:border-[#0ea5e9] focus:outline-none",
+ corners: "rounded-xl",
+ cardsStyle: "bg-[#121212] border border-white/10 shadow-2xl backdrop-blur-md",
+ linkColor: "text-[#0ea5e9]",
+ websiteHeder: "bg-[#0a0a0a]/80 backdrop-blur-md border-b border-white/10",
+ borders: "border-white/10",
+ shadow: "shadow-2xl",
+ websiteSectionStyle: "bg-[#0a0a0a] text-white",
+ textSecondary: "text-gray-400",
+}
+
export const basic: StyleObject = {
aside: 'bg-gray-800',
asideScrollbars: 'aside-scrollbars-gray',