feat: integrate authentication and password management features, including bcrypt for hashing and NextAuth for session handling

This commit is contained in:
Julien Froidefond
2025-11-30 08:04:06 +01:00
parent 7cb1d5f433
commit d663fbcbd0
30 changed files with 3287 additions and 4164 deletions

View File

@@ -7,6 +7,7 @@ import {
DangerZoneCard,
OFXInfoCard,
BackupCard,
PasswordCard,
} from "@/components/settings";
import { useBankingData } from "@/lib/hooks";
import type { BankingData } from "@/lib/types";
@@ -107,6 +108,8 @@ export default function SettingsPage() {
<BackupCard />
<PasswordCard />
<DangerZoneCard
categorizedCount={categorizedCount}
onClearCategories={clearAllCategories}