diff --git a/src/App.jsx b/src/App.jsx
index a5f8972..cca2356 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -1,14 +1,15 @@
 import { useState } from 'react'
+import './App.css'
 import AppHeader from './components/AppHeader';
 import Footer from './components/Footer';
 import Box from '@mui/material/Box';
 
 import Products from './private/products/Products';
-
-import './App.css'
+import Clients from './private/clients/Clients';
 
 function App() {
   const [zone, setZone] = useState('public'); // Could be 'public' | 'restricted' | 'private'
+  const [currentView, setCurrentView] = useState('Products');
 
   return (
     <>
@@ -20,13 +21,15 @@ function App() {
         }}
       >
 
-        
+         setCurrentView(view)} />
 
         {/* Main content area */}
         
-          {zone === 'private' && }
-          {zone === 'restricted' && }
-          {zone === 'public' && }
+          {zone === 'private' && }
+          {zone === 'restricted' && }
+
+          {zone === 'public' && currentView === 'Products' && }
+          {zone === 'public' && currentView === 'Clients' && }
         
         
       
diff --git a/src/components/AppHeader.jsx b/src/components/AppHeader.jsx
index 81345a6..701e2ae 100644
--- a/src/components/AppHeader.jsx
+++ b/src/components/AppHeader.jsx
@@ -4,7 +4,7 @@ import { AppBar, Toolbar, Typography, InputBase, IconButton, Box } from '@mui/ma
 import SearchIcon from '@mui/icons-material/Search';
 import MenuDrawer from './MenuDrawer';
 
-export default function AppHeader({ zone = 'public' }) {
+export default function AppHeader({ zone = 'public', onSelectMenuItem }) {
 
   const bgColor = {
     public: '#40120EFF',
@@ -63,7 +63,12 @@ export default function AppHeader({ zone = 'public' }) {
         )}
 
         {/* Rendering the Drawer */}
-         setMenuOpen(false)} />
+         setMenuOpen(false)}
+          onSelect={onSelectMenuItem} // pass handler from App
+        />
 
       
     
diff --git a/src/components/MenuDrawer.jsx b/src/components/MenuDrawer.jsx
index 52e1ccc..d48ac6c 100644
--- a/src/components/MenuDrawer.jsx
+++ b/src/components/MenuDrawer.jsx
@@ -3,10 +3,10 @@ import { Drawer, List, ListItem, ListItemText, useMediaQuery } from '@mui/materi
 const menuOptions = {
   public: ['Home', 'Explore', 'Contact'],
   restricted: ['Dashboard', 'Projects', 'Support'],
-  private: ['Products', 'Provider', 'Categories', 'Users', 'Orders', 'Settings', 'Logout'],
+  private: ['Products', 'Clients', 'Categories', 'Users', 'Orders', 'Settings', 'Logout'],
 };
 
-export default function MenuDrawer({ zone = 'public', open, onClose }) {
+export default function MenuDrawer({ zone = 'public', open, onClose, onSelect }) {
   const isMobile = useMediaQuery('(max-width:900px)');
   const items = menuOptions[zone];
 
@@ -21,7 +21,10 @@ export default function MenuDrawer({ zone = 'public', open, onClose }) {
     }}>
       
         {items.map((text, index) => (
-          
+           {
+              onClose(); // Close drawer
+              onSelect?.(text); // Notify parent of selected item
+            }}>
              (
+      
+    )
+  },
+  { field: 'fullName', headerName: 'Full Name', flex: 1 },
+  { field: 'email', headerName: 'Email', flex: 1.5 },
+  { field: 'phone', headerName: 'Phone', flex: 1 },
+  { field: 'address', headerName: 'Address', flex: 1.5 },
+  { field: 'company', headerName: 'Company', flex: 1 },
+  {
+    field: 'actions',
+    headerName: '',
+    width: 130,
+    renderCell: (params) => (
+      
+        
+          
+        
+        
+          
+        
+      
+    )
+  }
+];
+
+export default function Clients() {
+  const [rows, setRows] = useState([
+    {
+      id: 1,
+      avatar: '/client1.jpg',
+      fullName: 'Anna Wintour',
+      email: 'anna@fendi.com',
+      phone: '+1 555-1234',
+      address: '123 Fashion Blvd, NY',
+      company: 'Fendi Casa'
+    },
+    {
+      id: 2,
+      avatar: '/client2.jpg',
+      fullName: 'Karl Lagerfeld',
+      email: 'karl@fendi.com',
+      phone: '+1 555-5678',
+      address: '456 Style Ave, Paris',
+      company: 'Fendi Casa'
+    },
+    {
+      id: 3,
+      avatar: '',
+      fullName: 'Donatella Versace',
+      email: 'donatella@fendi.com',
+      phone: '+1 555-9999',
+      address: '789 Couture St, Milan',
+      company: 'Fendi Casa'
+    }
+  ]);
+
+  return (
+    
+      
+        Clients
+      
+      
+         60}
+          rows={rows}
+          columns={columns}
+          pageSize={5}
+          rowsPerPageOptions={[5]}
+          getRowSpacing={() => ({ top: 4, bottom: 4 })}
+        />
+        
+          
+        
+      
+    
+  );
+}
\ No newline at end of file