feat: add authenticated settings page.

This commit is contained in:
liqupan
2026-02-02 20:12:19 +08:00
parent cb3e16cd16
commit 6c32d845a7
259 changed files with 24685 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
import {
ArrowDown,
ArrowRight,
ArrowUp,
Circle,
CheckCircle,
AlertCircle,
Timer,
HelpCircle,
CircleOff,
} from 'lucide-react'
export const labels = [
{
value: 'bug',
label: 'Bug',
},
{
value: 'feature',
label: 'Feature',
},
{
value: 'documentation',
label: 'Documentation',
},
]
export const statuses = [
{
label: 'Backlog',
value: 'backlog' as const,
icon: HelpCircle,
},
{
label: 'Todo',
value: 'todo' as const,
icon: Circle,
},
{
label: 'In Progress',
value: 'in progress' as const,
icon: Timer,
},
{
label: 'Done',
value: 'done' as const,
icon: CheckCircle,
},
{
label: 'Canceled',
value: 'canceled' as const,
icon: CircleOff,
},
]
export const priorities = [
{
label: 'Low',
value: 'low' as const,
icon: ArrowDown,
},
{
label: 'Medium',
value: 'medium' as const,
icon: ArrowRight,
},
{
label: 'High',
value: 'high' as const,
icon: ArrowUp,
},
{
label: 'Critical',
value: 'critical' as const,
icon: AlertCircle,
},
]