import { SvgCoinsStack, SvgCompute, SvgCrossChain, SvgFileCode1, SvgGraphBarIncrease, SvgWrench, } from '@chainlink/blocks-icons' import { CreIcon } from './CreIcon' import { type SidebarNavItem } from './NavSidebar' export const defaultNavItems: SidebarNavItem[][] = [ [ { title: 'CRE', icon: CreIcon, href: 'https://cre.chain.link', }, { title: 'Data', icon: SvgGraphBarIncrease, href: 'https://data.chain.link', items: [ { title: 'Data Feeds', href: 'https://data.chain.link/feeds' }, { title: 'Data Streams', href: 'https://data.chain.link/streams' }, { title: 'Smart Data', href: 'https://data.chain.link/smartdata' }, { title: 'DataLink', href: 'https://data.chain.link/datalink' }, { title: 'CDY', href: 'https://cdy.chain.link' }, ], }, { title: 'Cross-chain', icon: SvgCrossChain, items: [ { title: 'Explorer', href: 'https://ccip.chain.link' }, { title: 'Lane Status', href: 'https://ccip.chain.link/status' }, { title: 'Token Manager', href: 'https://tokenmanager.chain.link' }, { title: 'Directory', href: 'https://docs.chain.link/ccip/directory', }, ], }, { title: 'Compute', icon: SvgCompute, items: [ { title: 'Automation', href: 'https://automation.chain.link' }, { title: 'Functions', href: 'https://functions.chain.link' }, { title: 'VRF', href: 'https://vrf.chain.link' }, ], }, ], [ { title: 'Tools', icon: SvgWrench, items: [ { title: 'Faucets', href: 'https://faucets.chain.link' }, { title: 'PegSwap', href: 'https://pegswap.chain.link' }, ], }, { title: 'Economics', icon: SvgCoinsStack, items: [ { title: 'Staking', href: 'https://staking.chain.link', }, { title: 'Rewards', href: 'https://rewards.chain.link' }, { title: 'Metrics', href: 'https://metrics.chain.link' }, { title: 'Reserve', href: 'https://metrics.chain.link/reserve', }, ], }, { title: 'Learn', icon: SvgFileCode1, items: [ { title: 'Docs', href: 'https://docs.chain.link', external: true }, { title: 'DevHub', href: 'https://dev.chain.link', external: true }, { title: 'Certification', href: 'https://dev.chain.link/certification', external: true, }, { title: 'Talk to Expert', href: 'https://chain.link/contact', external: true, }, ], }, ], ]