From c616b981f10d714af5b4b0fd9c06a0160d2c192d Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Thu, 11 Apr 2024 09:37:37 +0300 Subject: [PATCH] apps/web: disable Link prefetch --- apps/web/Components/Layout/Logo.jsx | 2 +- apps/web/Components/Layout/Navigation.tsx | 18 +++++++++++++++--- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/apps/web/Components/Layout/Logo.jsx b/apps/web/Components/Layout/Logo.jsx index abb5479..fcdca54 100644 --- a/apps/web/Components/Layout/Logo.jsx +++ b/apps/web/Components/Layout/Logo.jsx @@ -60,7 +60,7 @@ function Logo() { return ( - + logo diff --git a/apps/web/Components/Layout/Navigation.tsx b/apps/web/Components/Layout/Navigation.tsx index a1c5375..6ac428e 100644 --- a/apps/web/Components/Layout/Navigation.tsx +++ b/apps/web/Components/Layout/Navigation.tsx @@ -11,12 +11,20 @@ const items: MenuProps['items'] = [ { // icon: , key: '/', - label: Главная, + label: ( + + Главная + + ), }, { // icon: , key: '/unlimited', - label: Без ограничений, + label: ( + + Без ограничений + + ), }, ], icon: , @@ -28,7 +36,11 @@ const items: MenuProps['items'] = [ { // icon: , key: '/admin/cache', - label: Управление кэшем, + label: ( + + Управление кэшем + + ), }, ], icon: ,