5 Commits

Author SHA1 Message Date
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 HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import FeatureBento, { type FeatureCard } from "@/components/sections/feature/FeatureBento"; 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 { 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() { export default function AIAgentsTemplatePage() {
const navItems = [ const navItems = [
{ name: "Features", id: "features" }, { name: "Features", id: "features" },
{ name: "Pricing", id: "pricing" }, { name: "Pricing", id: "pricing" },
{ name: "Docs", id: "docs" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
]; ];
const features: FeatureCard[] = [ const features: FeatureCard[] = [
{ {
bentoComponent: "3d-task-list", title: "Market Data Feed", items: [ bentoComponent: "reveal-icon", icon: BarChart3,
{ icon: LineChart, label: "Institutional Index Analysis", time: "Live" }, title: "NASDAQ Engine", description: "High-frequency predictive modeling for major index sentiment and volatility tracking."
{ 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: "chat", aiIcon: Bot, bentoComponent: "reveal-icon", icon: Database,
userIcon: User, title: "Stock Engine", description: "Deep-asset data parsing for institutional conviction and individual equity analysis."
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: "3d-card-grid", items: [ bentoComponent: "reveal-icon", icon: TrendingUp,
{ name: "Capital Flow", icon: DollarSign }, title: "Global Flow Engine", description: "Real-time visual tracking of liquidity movements across interconnected international corridors."
{ 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."
}, },
]; ];
@@ -75,7 +59,6 @@ export default function AIAgentsTemplatePage() {
description="Deploy private-cloud data widgets for high-conviction market analysis and institutional asset tracking." description="Deploy private-cloud data widgets for high-conviction market analysis and institutional asset tracking."
buttons={[ buttons={[
{ text: "Terminal Access", href: "#" }, { text: "Terminal Access", href: "#" },
{ text: "API Documentation", href: "#" },
]} ]}
dashboard={{ dashboard={{
title: "Live Terminal Feed", logoIcon: BarChart3, title: "Live Terminal Feed", logoIcon: BarChart3,
@@ -89,7 +72,6 @@ export default function AIAgentsTemplatePage() {
{ icon: LineChart }, { icon: LineChart },
{ icon: Database }, { icon: Database },
{ icon: TrendingUp }, { icon: TrendingUp },
{ icon: Settings },
], ],
stats: [ stats: [
{ title: "NASDAQ Sentiment", values: [18450, 18520, 18490], description: "Real-time Alpha Index." }, { title: "NASDAQ Sentiment", values: [18450, 18520, 18490], description: "Real-time Alpha Index." },
@@ -109,25 +91,21 @@ export default function AIAgentsTemplatePage() {
<FeatureBento <FeatureBento
features={features} features={features}
animationType="blur-reveal" animationType="blur-reveal"
tag="System Components" tag="Core Engines"
tagIcon={Sparkles} tagIcon={Sparkles}
title="Scalable Infrastructure" title="Proprietary Computational Engines"
description="Modular intelligence components built for quantitative high-frequency analysis." description="High-performance backend modules tailored for quantitative execution and predictive market intelligence."
textboxLayout="split" textboxLayout="split"
useInvertedBackground={true} useInvertedBackground={true}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterLogoReveal
logoText="QuantTerminal" logoText="XENUS"
columns={[ leftLink={{ text: "© 2025 XENUS Financial Systems" }}
{ title: "Core Data", items: [{ label: "Market Analysis" }, { label: "Signal Intelligence" }, { label: "Flow Tracking" }] }, rightLink={{ text: "Disclaimer: Past performance is not indicative of future results." }}
{ 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."
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

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