Skip to content

Commit

Permalink
🎨 Update
Browse files Browse the repository at this point in the history
  • Loading branch information
nmdra committed Oct 15, 2024
1 parent ae755d4 commit 2c7cf12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions frontend/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ import Calendly from './Components/Help/Calendly'
import LoginForm from './Components/Help/LoginForm'
import SignupForm from './Components/Help/SignupForm'
import SupportTicketPDFView from './Pages/Help/SupportTicketPDFView'
import ManageShopIncome from './Pages/Admin/ManageShopIncome'
// import CCMProfile from './Pages/Help/CCManager/CCMProfile'

// Define all routes in a single Router
Expand Down Expand Up @@ -230,6 +231,7 @@ const router = createBrowserRouter(
/>
<Route path="/coupens" element={<Coupens />} />
<Route path="/finance" element={<Finance />} />
<Route path="/manage-shop-income" element={<ManageShopIncome />} />
</Route>

{/*
Expand Down
5 changes: 3 additions & 2 deletions frontend/src/Components/Admin/AsideBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
FaChartLine,
FaSignOutAlt,
FaTruck,
FaBook,
} from 'react-icons/fa'

const AdminSidebar = () => {
Expand Down Expand Up @@ -74,8 +75,8 @@ const AdminSidebar = () => {
to="/blogDashboard"
className="flex items-center px-4 py-2 text-gray-700 hover:bg-green-500 hover:text-white rounded text-left"
>
<FaChartLine className="w-5 h-5 mr-3" />
<span>blogDashboard</span>
<FaBook className="w-5 h-5 mr-3" />
<span>Blog</span>
</Link>
</li>
<li>
Expand Down

0 comments on commit 2c7cf12

Please sign in to comment.