aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/settings/sidebar/items.tsx
blob: 047ee23354e62736df28662ac39e7f790dcc3023 (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
35
36
37
38
39
40
41
42
43
44
45
46
import React from "react";
import {
  ArrowLeft,
  Download,
  KeyRound,
  Rss,
  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: "RSS Subscriptions",
    icon: <Rss size={18} />,
    path: "/settings/feeds",
  },
  {
    name: "Import / Export",
    icon: <Download size={18} />,
    path: "/settings/import",
  },
  {
    name: "API Keys",
    icon: <KeyRound size={18} />,
    path: "/settings/api-keys",
  },
];