diff --git a/client/src/components/layout/Sidebar.tsx b/client/src/components/layout/Sidebar.tsx
index 34f255f..7e12795 100644
--- a/client/src/components/layout/Sidebar.tsx
+++ b/client/src/components/layout/Sidebar.tsx
@@ -77,6 +77,12 @@ const getNavigation = (t: any) => [
href: "/themes",
icon: Palette,
},
+ {
+ name: t('navigation.comfort', 'Comfort Hub'),
+ href: "/comfort",
+ icon: Heart,
+ badge: "NEW", // Highlight this new feature
+ },
];
const getManagementNavigation = (t: any) => [
diff --git a/client/src/pages/ComfortHubPage.tsx b/client/src/pages/ComfortHubPage.tsx
index 78fcc0c..5e269b3 100644
--- a/client/src/pages/ComfortHubPage.tsx
+++ b/client/src/pages/ComfortHubPage.tsx
@@ -356,7 +356,7 @@ const ComfortHubPage = () => {
y: Math.random() * window.innerHeight
}}
animate={{
- y: [null, -20, null],
+ y: [-20, 0, -20],
opacity: [0.4, 0.8, 0.4]
}}
transition={{
@@ -371,21 +371,23 @@ const ComfortHubPage = () => {
{/* Global CSS for experience mode */}
-
+
);
};