import Background from './Background';
import type { MenuProps } from 'antd';
import Link from 'next/link';
import { useRouter } from 'next/router';
import { Menu } from 'ui/elements';
import { AppstoreOutlined, SettingOutlined } from 'ui/elements/icons';
const items: MenuProps['items'] = [
{
children: [
{
// icon: ,
key: '/',
label: Главная,
},
{
// icon: ,
key: '/unlimited',
label: Без ограничений,
},
],
icon: ,
key: 'home',
label: 'Приложение',
},
{
children: [
{
// icon: ,
key: '/admin/cache',
label: Управление кэшем,
},
],
icon: ,
key: 'admin',
label: 'Панель управления',
},
];
export function AppNavigation() {
const { pathname } = useRouter();
return (
);
}