We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e4ad34 commit d8183b9Copy full SHA for d8183b9
2 files changed
src/components/sidebar.tsx
@@ -1,13 +1,14 @@
1
"use client"
2
3
-import Link from "next/link";
4
import { ScrollArea } from "@/components/ui/scroll-area";
5
-import { UsersIcon, GroupIcon, Search } from "lucide-react";
+import { GroupIcon, Lightbulb, UsersIcon } from "lucide-react";
+import Link from "next/link";
6
7
export function Sidebar() {
8
const navigation = [
9
{ name: "Users", href: "/users", icon: UsersIcon },
10
{ name: "Teams", href: "/teams", icon: GroupIcon },
11
+ { name: "Ideas", href: "/idea", icon: Lightbulb },
12
];
13
14
return (
src/components/table/data-table-pagination.tsx
@@ -1,9 +1,7 @@
import { type Table } from "@tanstack/react-table"
import {
ChevronLeft,
- ChevronRight,
- ChevronsLeft,
- ChevronsRight,
+ ChevronRight
} from "lucide-react"
import { Button } from "../ui/button"
0 commit comments