Fix routing and update translations: change landing page route to '/landingpage', update user info dialog, and enhance localization strings.

This commit is contained in:
2025-11-21 23:31:41 +01:00
parent 238cd9254a
commit c6571033b0
6 changed files with 170 additions and 87 deletions

View File

@@ -79,7 +79,7 @@ function App() {
<Route element={<ProtectedRoutes />}>
<Route path="/" element={<HomePage />} />
<Route path="/my-loans" element={<MyLoansPage />} />
<Route path="/landing" element={<Landingpage />} />
<Route path="/landingpage" element={<Landingpage />} />
</Route>
<Route path="/login" element={<LoginPage />} />