feat: Add Billings & Payments and Testimonials settings pages for agent and user roles, and refactor notification settings form.

This commit is contained in:
pradeepkumar
2026-02-12 05:56:10 +05:30
parent a3880bf9a7
commit 4ddb7552db
15 changed files with 435 additions and 219 deletions

View File

@@ -2,21 +2,7 @@
import { SettingsSidebar, NotificationsForm } from '@/components/settings';
interface NotificationSetting {
id: string;
label: string;
description: string;
enabled: boolean;
}
export default function UserNotificationsPage() {
const handleSave = (data: {
emailNotifications: NotificationSetting[];
pushNotifications: NotificationSetting[];
}) => {
console.log('Saving user notification settings:', data);
};
return (
<div className="max-w-7xl mx-auto px-4 lg:px-8 py-6">
<div className="flex flex-col lg:flex-row gap-6">
@@ -25,14 +11,7 @@ export default function UserNotificationsPage() {
{/* Main Content */}
<div className="flex-1">
{/* Header Card */}
<div className="border border-[#00293d]/10 rounded-[15px] px-6 py-4 mb-4 bg-white">
<h1 className="font-fractul font-bold text-[15px] leading-[18px] text-[#00293D]">
Notifications
</h1>
</div>
<NotificationsForm onSave={handleSave} />
<NotificationsForm />
</div>
</div>
</div>