summaryrefslogtreecommitdiff
path: root/frontend/src/components/settings/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/settings/index.tsx')
-rw-r--r--frontend/src/components/settings/index.tsx18
1 files changed, 11 insertions, 7 deletions
diff --git a/frontend/src/components/settings/index.tsx b/frontend/src/components/settings/index.tsx
index 01f7d407..6f104710 100644
--- a/frontend/src/components/settings/index.tsx
+++ b/frontend/src/components/settings/index.tsx
@@ -1,7 +1,9 @@
import { SidebarNavigation } from 'decky-frontend-lib';
import { lazy } from 'react';
+import { FaCode, FaPlug } from 'react-icons/fa';
import { useSetting } from '../../utils/hooks/useSetting';
+import DeckyIcon from '../DeckyIcon';
import WithSuspense from '../WithSuspense';
import GeneralSettings from './pages/general';
import PluginList from './pages/plugin_list';
@@ -13,19 +15,18 @@ export default function SettingsPage() {
const pages = [
{
- title: 'General',
+ title: 'Decky',
content: <GeneralSettings isDeveloper={isDeveloper} setIsDeveloper={setIsDeveloper} />,
route: '/decky/settings/general',
+ icon: <DeckyIcon />,
},
{
title: 'Plugins',
content: <PluginList />,
route: '/decky/settings/plugins',
+ icon: <FaPlug />,
},
- ];
-
- if (isDeveloper)
- pages.push({
+ {
title: 'Developer',
content: (
<WithSuspense>
@@ -33,7 +34,10 @@ export default function SettingsPage() {
</WithSuspense>
),
route: '/decky/settings/developer',
- });
+ icon: <FaCode />,
+ visible: isDeveloper,
+ },
+ ];
- return <SidebarNavigation title="Decky Settings" showTitle pages={pages} />;
+ return <SidebarNavigation pages={pages} />;
}