diff --git a/src/widgets/navbar/lib/data.ts b/src/widgets/navbar/lib/data.ts index fb29a8e..3ec6d7e 100644 --- a/src/widgets/navbar/lib/data.ts +++ b/src/widgets/navbar/lib/data.ts @@ -1,26 +1,5 @@ -import { MenuItem } from './model'; import { LanguageRoutes } from '@/shared/config/i18n/types'; -const getMenu = (t: (key: string) => string): MenuItem[] => [ - { title: t('aboutSite'), url: '/about' }, - // { - // title: 'Products', - // url: '#', - // items: [ - // { - // title: 'Blog', - // description: 'The latest industry news, updates, and info', - // icon: Book, - // url: '#', - // }, - // ], - // }, - { - title: t('contact'), - url: '/contact', - }, -]; - const languages: { name: string; key: LanguageRoutes }[] = [ { name: "O'zbekcha", @@ -36,4 +15,4 @@ const languages: { name: string; key: LanguageRoutes }[] = [ }, ]; -export { getMenu, languages }; +export { languages };