summaryrefslogtreecommitdiff
path: root/frontend/app
diff options
context:
space:
mode:
authorTyler Hoang <tyler@tylerhoang.xyz>2026-05-19 00:38:13 -0700
committerTyler Hoang <tyler@tylerhoang.xyz>2026-05-19 00:38:13 -0700
commit0c557f44b59d90900d6a2052a9d97c0266d8feb1 (patch)
treebbd20053a8a52ba812feda8b9ef8cd00a8b88cfc /frontend/app
parentf024c46e874b3cacb7af5bf96aec376b88b86156 (diff)
feat: add ValuationOverviewCard to overview right column (multiples)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'frontend/app')
-rw-r--r--frontend/app/page.tsx2
-rw-r--r--frontend/app/prism-shell.css8
2 files changed, 10 insertions, 0 deletions
diff --git a/frontend/app/page.tsx b/frontend/app/page.tsx
index 6253221..150aaff 100644
--- a/frontend/app/page.tsx
+++ b/frontend/app/page.tsx
@@ -12,6 +12,7 @@ import { Sidebar } from "@/components/prism/Sidebar";
import { TickerHeader } from "@/components/prism/TickerHeader";
import { TopBar } from "@/components/prism/TopBar";
import { QualityCard } from "@/components/prism/QualityCard";
+import { ValuationOverviewCard } from "@/components/prism/ValuationOverviewCard";
import { VolumeCard } from "@/components/prism/VolumeCard";
import { ApiError, api } from "@/lib/api";
import { deltaClass, fmtNumber, fmtPct } from "@/lib/format";
@@ -317,6 +318,7 @@ function OverviewClient() {
<div className="psm-column">
<ProfileCard overview={overview} />
<ShortInterestCard overview={overview} />
+ <ValuationOverviewCard overview={overview} />
<QualityCard overview={overview} />
</div>
</div>
diff --git a/frontend/app/prism-shell.css b/frontend/app/prism-shell.css
index 0d7b4ac..56ca536 100644
--- a/frontend/app/prism-shell.css
+++ b/frontend/app/prism-shell.css
@@ -1880,3 +1880,11 @@
white-space: nowrap;
min-width: 60px;
}
+
+/* ── Shared utilities ───────────────────────────── */
+
+.psm-divider {
+ border: 0;
+ border-top: 1px solid var(--line-1);
+ margin: var(--sp-4) 0 var(--sp-3);
+}