diff --git a/src/app/[locale]/(core)/page.tsx b/src/app/[locale]/(core)/page.tsx index b701641..fe1b221 100644 --- a/src/app/[locale]/(core)/page.tsx +++ b/src/app/[locale]/(core)/page.tsx @@ -6,8 +6,6 @@ import { CompatibilitySection, CompatibilitySectionSkeleton, HoroscopeSection, - MeditationSection, - MeditationSectionSkeleton, PalmSection, PalmSectionSkeleton, PortraitsSection, @@ -17,7 +15,6 @@ import { loadChatsList } from "@/entities/chats/loaders"; import { loadAssistants, loadCompatibility, - loadMeditations, loadPalms, loadPortraits, loadVideoGuides, @@ -52,9 +49,6 @@ export default async function Home() { - }> - - }> diff --git a/src/shared/constants/navigation.tsx b/src/shared/constants/navigation.tsx index 9579e6c..e712d2c 100644 --- a/src/shared/constants/navigation.tsx +++ b/src/shared/constants/navigation.tsx @@ -36,10 +36,4 @@ export const navItems: NavItem[] = [ icon: IconName.Heart, href: ROUTES.compatibility(), }, - { - key: "meditation", - label: "Medi...", - icon: IconName.Leaf, - href: ROUTES.meditation(), - }, ];