diff --git a/lib/components/menu.dart b/lib/components/menu.dart
index e254211..c4f891b 100644
--- a/lib/components/menu.dart
+++ b/lib/components/menu.dart
@@ -1,6 +1,4 @@
 import 'dart:math' as math;
-import 'package:nekoya_flutter/screens/forgotpassword.dart';
-import 'package:nekoya_flutter/screens/otp.dart';
 import 'package:universal_html/html.dart' as html;
 import 'package:flutter/material.dart';
 
@@ -76,7 +74,7 @@ class _MenuState extends State<Menu> {
         html.window.history.pushState(null, '', '/products');
         _selectedWidget = const Products();
       } else if (index == 2) {
-        _selectedWidget = const ForgotPassword();
+        _selectedWidget = const Home();
       } else if (index == 3) {
         html.window.history.pushState(null, '', '/cart');
         _selectedWidget = const Cart();