Admin/Layout: extend menu

This commit is contained in:
vchikalkin 2024-04-10 16:19:52 +03:00
parent f92cb03fd8
commit d82d813270

View File

@ -5,14 +5,18 @@ import { useRouter } from 'next/router';
import type { PropsWithChildren } from 'react';
import styled from 'styled-components';
import { Menu } from 'ui/elements';
import { DatabaseOutlined, HomeOutlined } from 'ui/elements/icons';
import { DatabaseOutlined, HomeOutlined, PlusSquareOutlined } from 'ui/elements/icons';
const items: MenuProps['items'] = [
{
disabled: true,
icon: <HomeOutlined />,
key: '/admin',
label: 'Главная',
key: '/',
label: <Link href="/">Главная</Link>,
},
{
icon: <PlusSquareOutlined />,
key: '/unlimited',
label: <Link href="/unlimited">Без ограничений</Link>,
},
{
icon: <DatabaseOutlined />,