Files
leggen/frontend/src/routes/settings.tsx
Elisiário Couto 65404848aa refactor(frontend): Reorganize pages with tabbed Settings and focused System page
- Create new tabbed Settings component combining accounts and notifications
- Extract sync operations into dedicated System component
- Update routing: /notifications → /system with proper navigation labels
- Remove duplicate page headers (using existing SiteHeader)
- Add shadcn tabs component for better UX
- Fix mypy error in database_service.py (handle None lastrowid)

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 23:01:55 +01:00

7 lines
185 B
TypeScript

import { createFileRoute } from "@tanstack/react-router";
import Settings from "../components/Settings";
export const Route = createFileRoute("/settings")({
component: Settings,
});