Files
fast-next-template/frontend/src/app/(authenticated)/settings/preferences/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

24 lines
502 B
TypeScript

/**
* User Preferences Page
* Theme, notifications, and other preferences
*/
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Preferences',
};
export default function PreferencesPage() {
return (
<div>
<h2 className="text-2xl font-semibold text-gray-900 dark:text-white mb-4">
Preferences
</h2>
<p className="text-gray-600 dark:text-gray-400">
Configure your preferences (Coming in Task 3.5)
</p>
</div>
);
}