aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/settings/sidebar/items.tsx
blob: 999825dbfb373e03596af68ac15418ba0c0f83e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import React from "react";
import { ArrowLeft, Download, KeyRound, Sparkles, User } from "lucide-react";

export const settingsSidebarItems: {
  name: string;
  icon: JSX.Element;
  path: string;
}[] = [
  {
    name: "Back To App",
    icon: <ArrowLeft size={18} />,
    path: "/dashboard/bookmarks",
  },
  {
    name: "User Info",
    icon: <User size={18} />,
    path: "/settings/info",
  },
  {
    name: "AI Settings",
    icon: <Sparkles size={18} />,
    path: "/settings/ai",
  },
  {
    name: "Import / Export",
    icon: <Download size={18} />,
    path: "/settings/import",
  },
  {
    name: "API Keys",
    icon: <KeyRound size={18} />,
    path: "/settings/api-keys",
  },
];