diff --git a/apps/mobile/app/components/side-menu/side-menu-home.tsx b/apps/mobile/app/components/side-menu/side-menu-home.tsx
index cde5ac6e9..b8b78efcb 100644
--- a/apps/mobile/app/components/side-menu/side-menu-home.tsx
+++ b/apps/mobile/app/components/side-menu/side-menu-home.tsx
@@ -19,6 +19,7 @@ along with this program. If not, see .
import { SubscriptionPlan } from "@notesnook/core";
import { strings } from "@notesnook/intl";
import { useThemeColors } from "@notesnook/theme";
+import dayjs from "dayjs";
import React from "react";
import { FlatList, View } from "react-native";
import { DraxProvider, DraxScrollView } from "react-native-drax";
@@ -140,19 +141,35 @@ export function SideMenuHome() {
paddingVertical: DefaultAppStyles.GAP_VERTICAL
}}
>
- {(subscriptionType === SubscriptionPlan.FREE ||
- !subscriptionType ||
- !user) &&
- !SettingsService.getProperty("serverUrls") ? (
+ {dayjs().month() !== 11 ? (
+ <>
+ {(subscriptionType === SubscriptionPlan.FREE ||
+ !subscriptionType ||
+ !user) &&
+ !SettingsService.getProperty("serverUrls") ? (
+
+ ) : null}
+ >
+ ) : (