Admin/Layout: extend menu
This commit is contained in:
parent
f92cb03fd8
commit
d82d813270
@ -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 />,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user