diff --git a/app/page.tsx b/app/page.tsx index c847c18..e61a99c 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -14,6 +14,7 @@ import YieldsTab from "@/components/YieldsTab"; import NewsTab from "@/components/NewsTab"; import CotTab from "@/components/CotTab"; import ReportTab from "@/components/ReportTab"; +import { TvMiniChart } from "@/components/TvChart"; import type { CalendarEvent } from "@/app/api/calendar/route"; import type { NewsItem } from "@/app/api/news/route"; import type { CotHistory } from "@/app/api/cot-history/route"; @@ -28,7 +29,7 @@ export default function Dashboard() { const [cot, setCot] = useState | null>(null); const [calEvents, setCalEvents] = useState([]); const [nextWeekAvail, setNextWeekAvail] = useState(false); - const [activeTab, setActiveTab] = useState<"dashboard" | "calendar" | "pairs" | "yields" | "news" | "cot" | "report">("dashboard"); + const [activeTab, setActiveTab] = useState<"dashboard" | "calendar" | "pairs" | "yields" | "news" | "cot" | "report" | "markets">("dashboard"); const [newsItems, setNewsItems] = useState([]); const [newsLoading, setNewsLoading] = useState(false); const [cotHistory, setCotHistory] = useState(null); @@ -350,7 +351,7 @@ export default function Dashboard() { {/* Tab navigation */}
- {(["dashboard", "calendar", "pairs", "yields", "news", "cot", "report"] as const).map((tab) => ( + {(["dashboard", "markets", "calendar", "pairs", "yields", "news", "cot", "report"] as const).map((tab) => (