16 lines
513 B
TypeScript
16 lines
513 B
TypeScript
|
|
import { NotificationPreferencesForm } from '@/components/notifications/notification-preferences-form';
|
||
|
|
|
||
|
|
export default function NotificationPreferencesPage() {
|
||
|
|
return (
|
||
|
|
<div className="max-w-2xl mx-auto py-6">
|
||
|
|
<div className="mb-6">
|
||
|
|
<h1 className="text-2xl font-bold">Notification Preferences</h1>
|
||
|
|
<p className="text-sm text-muted-foreground">
|
||
|
|
Choose which notifications you receive and how.
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
<NotificationPreferencesForm />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|