Skip to content

Commit af77582

Browse files
committed
update: github README & index page content
1 parent 74e92be commit af77582

File tree

9 files changed

+219
-97
lines changed

9 files changed

+219
-97
lines changed

README.md

Lines changed: 208 additions & 86 deletions
Large diffs are not rendered by default.

public/Analysis-Flow-dark.png

1.93 MB
Loading

public/Analysis-Flow-light.png

1.91 MB
Loading

public/Analysis-Flow.png

-1.93 MB
Binary file not shown.

public/Rebalance-Flow-dark.png

1.19 MB
Loading

public/Rebalance-Flow-light.png

1.18 MB
Loading

public/Rebalance-Flow.png

-1.18 MB
Binary file not shown.

public/screen-shot.png

526 KB
Loading

src/pages/Index.tsx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const Index = () => {
3939
AI-Powered Portfolio Management for the Modern Trader
4040
</p>
4141
<p className="text-lg text-muted-foreground max-w-2xl mx-auto">
42-
Leverage cutting-edge AI to analyze markets, manage risk, and execute trades with confidence.
42+
Leverage cutting-edge AI Agents to analyze markets, manage portfolio, and execute trades with confidence.
4343
</p>
4444
</div>
4545

@@ -51,7 +51,7 @@ const Index = () => {
5151
) : (
5252
<>
5353
<Button size="lg" className="text-lg px-8 py-6" onClick={() => navigate('/register')}>
54-
Get Started Free
54+
Get Started
5555
</Button>
5656
<Button variant="outline" size="lg" className="text-lg px-8 py-6" onClick={() => navigate('/login')}>
5757
Sign In
@@ -68,9 +68,9 @@ const Index = () => {
6868
<div className="mx-auto w-16 h-16 bg-primary/10 rounded-full flex items-center justify-center">
6969
<Bot className="h-8 w-8 text-primary" />
7070
</div>
71-
<h3 className="text-xl font-semibold">11 AI Specialists</h3>
71+
<h3 className="text-xl font-semibold">Multiple AI Agent Teams</h3>
7272
<p className="text-muted-foreground">
73-
Market Analyst, News Analyst, Social Media Analyst, Fundamentals Analyst, Bull/Bear Researchers, Trader, Risk Analysts, and Portfolio Manager.
73+
Analysts, Bull/Bear Researchers, Trader, Risk Analysts, and Portfolio Manager.
7474
</p>
7575
</div>
7676

@@ -114,7 +114,7 @@ const Index = () => {
114114
</div>
115115
<h2 className="text-2xl md:text-3xl font-bold">How TradingGoose Works</h2>
116116
<p className="text-base text-muted-foreground max-w-3xl mx-auto">
117-
TradingGoose employs a sophisticated multi-agent AI system that orchestrates 11 specialized AI agents through structured workflows to analyze stocks and manage portfolios.
117+
TradingGoose employs a sophisticated multi-agent AI system that orchestrates 15 specialized AI agents through structured workflows to analyze stocks and manage portfolios.
118118
</p>
119119
</div>
120120

@@ -131,7 +131,7 @@ const Index = () => {
131131
{/* Workflow Image */}
132132
<div className="lg:col-span-2">
133133
<img
134-
src="/Analysis-Flow.png"
134+
src="/Analysis-Flow-dark.png"
135135
alt="TradingGoose Analysis Workflow"
136136
className="w-full mx-auto"
137137
/>
@@ -140,11 +140,11 @@ const Index = () => {
140140
{/* Phase Steps */}
141141
<div className="space-y-3">
142142
{[
143-
{ num: 1, title: "Analysis", desc: "Market, News, Social Media & Fundamentals", color: "yellow" },
143+
{ num: 1, title: "Analysis", desc: "Macro, Market, News, Social, Fundamentals", color: "yellow" },
144144
{ num: 2, title: "Research", desc: "Bull & Bear debate + synthesis", color: "green" },
145145
{ num: 3, title: "Trading", desc: "BUY/SELL/HOLD recommendation", color: "purple" },
146-
{ num: 4, title: "Risk", desc: "Multi-perspective risk evaluation", color: "orange" },
147-
{ num: 5, title: "Portfolio", desc: "Final position sizing decisions", color: "sky" }
146+
{ num: 4, title: "Risk", desc: "Multi-perspective risk evaluation", color: "red" },
147+
{ num: 5, title: "Portfolio", desc: "Final position sizing decisions", color: "blue" }
148148
].map((step, index) => (
149149
<div key={index} className="inline-flex items-center gap-3 px-3 py-2 bg-card/50 rounded-full border border-border/50 hover:bg-card transition-colors">
150150
<div className={`w-6 h-6 bg-${step.color}-500 text-white rounded-full flex items-center justify-center font-bold text-xs`}>
@@ -176,7 +176,7 @@ const Index = () => {
176176
{ num: 1, title: "Threshold Check", desc: "Monitor portfolio drift triggers", color: "yellow" },
177177
{ num: 2, title: "Opportunity Check", desc: "Evaluate market conditions", color: "orange" },
178178
{ num: 3, title: "Full Analysis", desc: "Complete 5-phase analysis", color: "gray" },
179-
{ num: 4, title: "Portfolio Execution", desc: "Execute rebalancing strategy", color: "sky" }
179+
{ num: 4, title: "Portfolio Execution", desc: "Execute rebalancing strategy", color: "blue" }
180180
].map((step, index) => (
181181
<div key={index} className="inline-flex items-center gap-3 px-3 py-2 bg-card/50 rounded-full border border-border/50 hover:bg-card transition-colors">
182182
<div className={`w-6 h-6 bg-${step.color}-500 text-white rounded-full flex items-center justify-center font-bold text-xs`}>
@@ -193,7 +193,7 @@ const Index = () => {
193193
{/* Workflow Image */}
194194
<div className="lg:col-span-2">
195195
<img
196-
src="/Rebalance-Flow.png"
196+
src="/Rebalance-Flow-dark.png"
197197
alt="TradingGoose Rebalance Workflow"
198198
className="w-full mx-auto"
199199
/>

0 commit comments

Comments
 (0)