Files
HKSingleParty/03_source/frontend/src/layouts/nav-config-main-demo.tsx
2025-05-28 09:55:51 +08:00

28 lines
725 B
TypeScript

import type { NavBasicProps } from 'src/components/nav-basic';
// ----------------------------------------------------------------------
export const demoNavData: NavBasicProps['data'] = [
{ title: 'Home', path: '/' },
{ title: 'Components', path: '/components' },
{
title: 'Pages',
path: '/pages',
children: [
{ title: 'Page 1', path: '/pages/1' },
{ title: 'Page 2', path: '/pages/2' },
{ title: 'Page 3', path: '/pages/3' },
],
},
{
title: 'Items',
path: '/items',
children: [
{ title: 'Item 1', path: '/items/1' },
{ title: 'Item 2', path: '/items/2' },
{ title: 'Item 3', path: '/items/3' },
],
},
{ title: 'Docs', path: '/items' },
];