2025-04-27 15:25:45 -03:00
|
|
|
"use client";
|
|
|
|
|
2025-03-30 16:42:51 -03:00
|
|
|
import React from 'react';
|
|
|
|
import { NotificationsForm } from './notifications-form';
|
|
|
|
|
|
|
|
export default function SettingsNotificationsPage() {
|
|
|
|
return (
|
2025-03-30 19:39:59 -03:00
|
|
|
<div className="space-y-6">
|
|
|
|
<div>
|
|
|
|
<h2 className="text-lg font-medium">Notifications</h2>
|
|
|
|
<p className="text-sm text-gray-500">
|
2025-03-30 16:42:51 -03:00
|
|
|
Configure how you receive notifications.
|
2025-03-30 19:39:59 -03:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div className="border-t border-gray-200 my-4" />
|
2025-03-30 16:42:51 -03:00
|
|
|
<NotificationsForm />
|
2025-03-30 19:39:59 -03:00
|
|
|
</div>
|
2025-03-30 16:42:51 -03:00
|
|
|
);
|
|
|
|
}
|