import React from 'react' import { Menu } from 'antd' import { HomeOutlined, MessageOutlined, UserOutlined, } from '@ant-design/icons' import { useRouter, usePathname } from 'next/navigation' const navItems = [ { key: '/user/', icon: , label: 'Home', }, { key: '/user/chat', icon: , label: 'Chat', }, { key: '/user/settings/profile', icon: , label: 'Profile', }, ]; const Navigation = () => { const router = useRouter() const pathname = usePathname() return ( router.push(key)} items={navItems} className="custom-center-menu" /> ) } export default Navigation