diff options
Diffstat (limited to 'apps/web/components/dashboard/sidebar/Sidebar.tsx')
| -rw-r--r-- | apps/web/components/dashboard/sidebar/Sidebar.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/web/components/dashboard/sidebar/Sidebar.tsx b/apps/web/components/dashboard/sidebar/Sidebar.tsx index 8891d9bc..0f805a09 100644 --- a/apps/web/components/dashboard/sidebar/Sidebar.tsx +++ b/apps/web/components/dashboard/sidebar/Sidebar.tsx @@ -4,7 +4,7 @@ import { Separator } from "@/components/ui/separator"; import { useTranslation } from "@/lib/i18n/server"; import { api } from "@/server/api/client"; import { getServerAuthSession } from "@/server/auth"; -import { Archive, Home, Search, Tag } from "lucide-react"; +import { Archive, Highlighter, Home, Search, Tag } from "lucide-react"; import serverConfig from "@hoarder/shared/config"; @@ -46,6 +46,11 @@ export default async function Sidebar() { path: "/dashboard/tags", }, { + name: t("common.highlights"), + icon: <Highlighter size={18} />, + path: "/dashboard/highlights", + }, + { name: t("common.archive"), icon: <Archive size={18} />, path: "/dashboard/archive", |
