+
+
Overview
+
+ Welcome back. Here is what's happening with your projects today.
+
+
+
+ {/* Example Content Grid */}
+
+ {[1, 2, 3, 4].map((i) => (
+
+ ))}
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/pages/admins/components/dashboards/Sidebar.tsx b/src/pages/admins/components/dashboards/Sidebar.tsx
new file mode 100644
index 0000000..15639c2
--- /dev/null
+++ b/src/pages/admins/components/dashboards/Sidebar.tsx
@@ -0,0 +1,83 @@
+
+import { cn } from "@/lib/utils";
+import {
+ BookOpen,
+ FolderKanban,
+ HelpCircle,
+ LayoutDashboard,
+ LogOut,
+ MessageSquareQuote,
+ User,
+ Users,
+} from "lucide-react";
+import { Link } from "react-router-dom";
+
+const navItems = [
+ { title: "Overview", icon: LayoutDashboard, href: "/" },
+ { title: "Manage Projects", icon: FolderKanban, href: "/dashboard/projects" },
+ { title: "Manage Team", icon: Users, href: "/dashboard/team" },
+ {
+ title: "Manage Client Review",
+ icon: MessageSquareQuote,
+ href: "/dashboard/reviews",
+ },
+ { title: "Manage Blogs", icon: BookOpen, href: "/dashboard/blogs" },
+ { title: "Manage FAQ", icon: HelpCircle, href: "/dashboard/faq" },
+];
+
+export default function Sidebar({ isCollapsed }: { isCollapsed: boolean }) {
+ return (
+