stock-bot/apps/web-app/src/lib/constants.ts
2025-06-17 23:19:12 -04:00

17 lines
595 B
TypeScript

import {
BuildingLibraryIcon,
ChartBarIcon,
CogIcon,
DocumentTextIcon,
HomeIcon,
PresentationChartLineIcon,
} from '@heroicons/react/24/outline';
export const navigation = [
{ name: 'Dashboard', href: '/dashboard', icon: HomeIcon },
{ name: 'Exchanges', href: '/exchanges', icon: BuildingLibraryIcon },
{ name: 'Portfolio', href: '/portfolio', icon: ChartBarIcon },
{ name: 'Strategies', href: '/strategies', icon: DocumentTextIcon },
{ name: 'Analytics', href: '/analytics', icon: PresentationChartLineIcon },
{ name: 'Settings', href: '/settings', icon: CogIcon },
];