diff --git a/LocalMind-Backend/package.json b/LocalMind-Backend/package.json index bb5d7bf..fda80cd 100644 --- a/LocalMind-Backend/package.json +++ b/LocalMind-Backend/package.json @@ -55,7 +55,6 @@ "@types/mongoose": "^5.11.97", "@types/morgan": "^1.9.10", "argon2": "^0.44.0", - "bcrypt": "^5.1.1", "axios": "^1.12.2", "bcrypt": "^6.0.0", "chalk": "^5.6.2", diff --git a/LocalMind-Frontend/src/features/Dashboard/V1/Component/Pages/HomePage.tsx b/LocalMind-Frontend/src/features/Dashboard/V1/Component/Pages/HomePage.tsx index d485032..3a1dfbd 100644 --- a/LocalMind-Frontend/src/features/Dashboard/V1/Component/Pages/HomePage.tsx +++ b/LocalMind-Frontend/src/features/Dashboard/V1/Component/Pages/HomePage.tsx @@ -13,7 +13,7 @@ import { useGSAP } from '@gsap/react' gsap.registerPlugin(ScrollTrigger, SplitText) const HomePage: React.FC = () => { - // Typed array of feature objects + // Typed array of feature objects (acts as fetched data) const features: CardProps[] = [ { title: 'Custom Models', @@ -33,6 +33,15 @@ const HomePage: React.FC = () => { }, ] + // ✅ EMPTY STATE UI (Issue #79) + if (!features || features.length === 0) { + return ( +