mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 11:39:26 +01:00
Adds a new settings page with Ko-fi donation link, Rogue Support banner, and community contribution options (GitHub, Discord). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
56 lines
2.1 KiB
TypeScript
56 lines
2.1 KiB
TypeScript
import {
|
|
IconArrowBigUpLines,
|
|
IconChartBar,
|
|
IconDashboard,
|
|
IconFolder,
|
|
IconGavel,
|
|
IconHeart,
|
|
IconMapRoute,
|
|
IconSettings,
|
|
IconTerminal2,
|
|
IconWand,
|
|
IconZoom
|
|
} from '@tabler/icons-react'
|
|
import { usePage } from '@inertiajs/react'
|
|
import StyledSidebar from '~/components/StyledSidebar'
|
|
import { getServiceLink } from '~/lib/navigation'
|
|
import useServiceInstalledStatus from '~/hooks/useServiceInstalledStatus'
|
|
import { SERVICE_NAMES } from '../../constants/service_names'
|
|
|
|
export default function SettingsLayout({ children }: { children: React.ReactNode }) {
|
|
const { aiAssistantName } = usePage<{ aiAssistantName: string }>().props
|
|
const aiAssistantInstallStatus = useServiceInstalledStatus(SERVICE_NAMES.OLLAMA)
|
|
|
|
const navigation = [
|
|
...(aiAssistantInstallStatus.isInstalled ? [{ name: aiAssistantName, href: '/settings/models', icon: IconWand, current: false }] : []),
|
|
{ name: 'Apps', href: '/settings/apps', icon: IconTerminal2, current: false },
|
|
{ name: 'Benchmark', href: '/settings/benchmark', icon: IconChartBar, current: false },
|
|
{ name: 'Content Explorer', href: '/settings/zim/remote-explorer', icon: IconZoom, current: false },
|
|
{ name: 'Content Manager', href: '/settings/zim', icon: IconFolder, current: false },
|
|
{ name: 'Maps Manager', href: '/settings/maps', icon: IconMapRoute, current: false },
|
|
{
|
|
name: 'Service Logs & Metrics',
|
|
href: getServiceLink('9999'),
|
|
icon: IconDashboard,
|
|
current: false,
|
|
target: '_blank',
|
|
},
|
|
{
|
|
name: 'Check for Updates',
|
|
href: '/settings/update',
|
|
icon: IconArrowBigUpLines,
|
|
current: false,
|
|
},
|
|
{ name: 'System', href: '/settings/system', icon: IconSettings, current: false },
|
|
{ name: 'Support the Project', href: '/settings/support', icon: IconHeart, current: false },
|
|
{ name: 'Legal Notices', href: '/settings/legal', icon: IconGavel, current: false },
|
|
]
|
|
|
|
return (
|
|
<div className="min-h-screen flex flex-row bg-surface-secondary/90">
|
|
<StyledSidebar title="Settings" items={navigation} />
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|