Files
fast-next-template/frontend/src/app/(authenticated)/settings/page.tsx
Felipe Cardoso 4536c607eb Add settings layout and page structure for authenticated routes
Introduce tabbed navigation for the settings page, including Profile, Password, Sessions, and Preferences sections. Add placeholders for each section with metadata and routes. Redirect `/settings` to `/settings/profile`. Integrate `AuthGuard` for settings and authenticated layouts while incorporating reusable `Header` and `Footer` components.
2025-11-02 05:59:20 +01:00

11 lines
187 B
TypeScript

/**
* Settings Index Page
* Redirects to /settings/profile
*/
import { redirect } from 'next/navigation';
export default function SettingsPage() {
redirect('/settings/profile');
}