Skip to content

Commit d8183b9

Browse files
committed
feat:sibebar idea route
1 parent 8e4ad34 commit d8183b9

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

src/components/sidebar.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
"use client"
22

3-
import Link from "next/link";
43
import { ScrollArea } from "@/components/ui/scroll-area";
5-
import { UsersIcon, GroupIcon, Search } from "lucide-react";
4+
import { GroupIcon, Lightbulb, UsersIcon } from "lucide-react";
5+
import Link from "next/link";
66

77
export function Sidebar() {
88
const navigation = [
99
{ name: "Users", href: "/users", icon: UsersIcon },
1010
{ name: "Teams", href: "/teams", icon: GroupIcon },
11+
{ name: "Ideas", href: "/idea", icon: Lightbulb },
1112
];
1213

1314
return (

src/components/table/data-table-pagination.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
import { type Table } from "@tanstack/react-table"
22
import {
33
ChevronLeft,
4-
ChevronRight,
5-
ChevronsLeft,
6-
ChevronsRight,
4+
ChevronRight
75
} from "lucide-react"
86

97
import { Button } from "../ui/button"

0 commit comments

Comments
 (0)