6 Commits

Author SHA1 Message Date
c161d94eae Merge version_5 into main
Merge version_5 into main
2026-05-11 12:01:54 +00:00
230fcd135a Update src/app/styles/variables.css 2026-05-11 12:01:51 +00:00
0891a95c16 Update src/app/page.tsx 2026-05-11 12:01:51 +00:00
c89e88ef0e Merge version_4 into main
Merge version_4 into main
2026-05-11 11:48:41 +00:00
7985104fa7 Update src/app/page.tsx 2026-05-11 11:48:35 +00:00
f7443e4c06 Merge version_3 into main
Merge version_3 into main
2026-05-11 11:46:50 +00:00
2 changed files with 19 additions and 41 deletions

View File

@@ -3,45 +3,29 @@
import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import FeatureBento, { type FeatureCard } from "@/components/sections/feature/FeatureBento";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Bot, User, Brain, LineChart, TrendingUp, Database, DollarSign, Shield, Activity, Sparkles, BarChart3, Settings, RefreshCcw } from "lucide-react";
import { BarChart3, Shield, Activity, Sparkles, Database, TrendingUp, DollarSign, LineChart, FileText, AlertTriangle } from "lucide-react";
export default function AIAgentsTemplatePage() {
const navItems = [
{ name: "Features", id: "features" },
{ name: "Pricing", id: "pricing" },
{ name: "Docs", id: "docs" },
{ name: "Contact", id: "contact" },
];
const features: FeatureCard[] = [
{
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: "Terminal-grade market signals with high-frequency processing capabilities."
bentoComponent: "reveal-icon", icon: BarChart3,
title: "NASDAQ Engine", description: "High-frequency predictive modeling for major index sentiment and volatility tracking."
},
{
bentoComponent: "chat", aiIcon: Bot,
userIcon: User,
exchanges: [
{ 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: "Query terminal...", title: "Quantitative Intelligence", description: "Deep-dive equity analysis with predictive sentiment modeling."
bentoComponent: "reveal-icon", icon: Database,
title: "Stock Engine", description: "Deep-asset data parsing for institutional conviction and individual equity analysis."
},
{
bentoComponent: "3d-card-grid", items: [
{ name: "Capital Flow", icon: DollarSign },
{ name: "Asset Rotation", icon: RefreshCcw },
{ name: "Risk Sentiment", icon: Shield },
{ name: "Macro Alpha", icon: Activity },
],
centerIcon: Brain,
title: "Global Macro Flows", description: "Monitor cross-border intelligence and institutional capital rotation."
bentoComponent: "reveal-icon", icon: TrendingUp,
title: "Global Flow Engine", description: "Real-time visual tracking of liquidity movements across interconnected international corridors."
},
];
@@ -75,7 +59,6 @@ export default function AIAgentsTemplatePage() {
description="Deploy private-cloud data widgets for high-conviction market analysis and institutional asset tracking."
buttons={[
{ text: "Terminal Access", href: "#" },
{ text: "API Documentation", href: "#" },
]}
dashboard={{
title: "Live Terminal Feed", logoIcon: BarChart3,
@@ -89,7 +72,6 @@ export default function AIAgentsTemplatePage() {
{ icon: LineChart },
{ icon: Database },
{ icon: TrendingUp },
{ icon: Settings },
],
stats: [
{ title: "NASDAQ Sentiment", values: [18450, 18520, 18490], description: "Real-time Alpha Index." },
@@ -109,25 +91,21 @@ export default function AIAgentsTemplatePage() {
<FeatureBento
features={features}
animationType="blur-reveal"
tag="System Components"
tag="Core Engines"
tagIcon={Sparkles}
title="Scalable Infrastructure"
description="Modular intelligence components built for quantitative high-frequency analysis."
title="Proprietary Computational Engines"
description="High-performance backend modules tailored for quantitative execution and predictive market intelligence."
textboxLayout="split"
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="QuantTerminal"
columns={[
{ title: "Core Data", items: [{ label: "Market Analysis" }, { label: "Signal Intelligence" }, { label: "Flow Tracking" }] },
{ title: "Developer", items: [{ label: "REST API" }, { label: "Direct Socket" }, { label: "SDK" }] },
{ title: "Legal", items: [{ label: "Security" }, { label: "Terms" }, { label: "Policy" }] },
]}
copyrightText="© 2025 QuantTerminal. Proprietary Intelligence Systems."
<FooterLogoReveal
logoText="XENUS"
leftLink={{ text: "© 2025 XENUS Financial Systems" }}
rightLink={{ text: "Disclaimer: Past performance is not indicative of future results." }}
/>
</div>
</ThemeProvider>
);
}
}

View File

@@ -13,11 +13,11 @@
--background: #050505;
--card: #0f0f0f;
--foreground: #f0f0f0;
--primary-cta: #00ff41;
--primary-cta: #00C26E;
--primary-cta-text: #0a0a0a;
--secondary-cta: #0070ff;
--secondary-cta: #1D6FFF;
--secondary-cta-text: #ffffffe6;
--accent: #00ff41;
--accent: #00C26E;
--background-accent: #050505;
/* text sizing - set by ThemeProvider */