diff --git a/src/app/page.tsx b/src/app/page.tsx index 4775396..8c0ee51 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -17,68 +17,72 @@ export default function AIAgentsTemplatePage() { const features: FeatureCard[] = [ { - bentoComponent: "3d-task-list", title: "NASDAQ Market Analysis", items: [ - { icon: LineChart, label: "Real-time Index Tracking", time: "Live" }, - { icon: TrendingUp, label: "Volatility Sentiment", time: "5m ago" }, - { icon: Database, label: "Institutional Flow", time: "10m ago" }, + bentoComponent: "3d-task-list", title: "Market Data Feed", items: [ + { icon: LineChart, label: "Institutional Index Analysis", time: "Live" }, + { icon: TrendingUp, label: "Volatility Sentiment Engine", time: "2s ago" }, + { icon: Database, label: "Private Order Flow", time: "5s ago" }, ], - description: "Institutional-grade NASDAQ analytics widgets with real-time signal processing."}, + description: "Terminal-grade market signals with high-frequency processing capabilities." + }, { bentoComponent: "chat", aiIcon: Bot, userIcon: User, exchanges: [ - { userMessage: "Analyze NVDA trends", aiResponse: "NVDA is showing strong institutional accumulation with 12% relative strength." }, - { userMessage: "Capital flow report?", aiResponse: "Global flows favor tech-heavy NASDAQ indices with rotation into semi-conductors." }, + { userMessage: "Alpha Signal Check?", aiResponse: "Institutional accumulation detected in major tech indices with 14% relative outperformance." }, + { userMessage: "Liquidity status?", aiResponse: "Global flows remain concentrated in high-conviction momentum assets." }, ], - placeholder: "Analyze ticker...", title: "Single Stock Intelligence", description: "Deep-dive analysis for specific equities with advanced visualization."}, + placeholder: "Query terminal...", title: "Quantitative Intelligence", description: "Deep-dive equity analysis with predictive sentiment modeling." + }, { bentoComponent: "3d-card-grid", items: [ - { name: "Global Flows", icon: DollarSign }, + { name: "Capital Flow", icon: DollarSign }, { name: "Asset Rotation", icon: RefreshCcw }, - { name: "Institutional Sentiment", icon: Shield }, - { name: "Macro Signals", icon: Activity }, + { name: "Risk Sentiment", icon: Shield }, + { name: "Macro Alpha", icon: Activity }, ], centerIcon: Brain, - title: "Global Capital Flows", description: "Monitor cross-border capital intelligence and macro-market shifts."}, + title: "Global Macro Flows", description: "Monitor cross-border intelligence and institutional capital rotation." + }, ]; return (
@@ -104,26 +108,26 @@ export default function AIAgentsTemplatePage() {
); -} \ No newline at end of file +}