Add financials page and navigation links

This commit is contained in:
2026-02-28 22:00:11 -05:00
parent a09001501e
commit 3cc085e583
3 changed files with 463 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
import Link from 'next/link';
import { usePathname, useRouter } from 'next/navigation';
import { useState } from 'react';
import { Activity, BookOpenText, ChartCandlestick, Eye, LineChart, LogOut } from 'lucide-react';
import { Activity, BookOpenText, ChartCandlestick, Eye, Landmark, LineChart, LogOut } from 'lucide-react';
import { authClient } from '@/lib/auth-client';
import { Button } from '@/components/ui/button';
import { cn } from '@/lib/utils';
@@ -18,6 +18,7 @@ type AppShellProps = {
const NAV_ITEMS = [
{ href: '/', label: 'Command Center', icon: Activity },
{ href: '/analysis', label: 'Company Analysis', icon: LineChart },
{ href: '/financials', label: 'Financials', icon: Landmark },
{ href: '/filings', label: 'Filings Stream', icon: BookOpenText },
{ href: '/portfolio', label: 'Portfolio Matrix', icon: ChartCandlestick },
{ href: '/watchlist', label: 'Watchlist', icon: Eye }