import React from 'react'; import { Link } from 'react-router-dom'; import { SettingsLayout } from './components/SettingsLayout'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import { __ } from '@/lib/i18n'; import { Bell, Users, ChevronRight, Activity, Settings } from 'lucide-react'; export default function NotificationsSettings() { return ( } // Empty action to trigger contextual header >
{/* Recipients Section */}

{__('Recipients')}

{__('Configure notifications for different user types')}

{/* Staff Notifications */}
{__('Staff')} {__('Alerts for admins and staff members')}

{__('Get notified about orders, low stock, new customers, and more. Configure email and push notifications for your team.')}

{__('Orders, Products, Customers')}
{/* Customer Notifications */}
{__('Customer')} {__('Transactional emails and updates for customers')}

{__('Manage order confirmations, shipping updates, account emails, and marketing messages sent to your customers.')}

{__('Orders, Shipping, Account')}
{/* Channels Section */}

{__('Channels')}

{__('Configure notification delivery methods and settings')}

{/* Channel Configuration */}
{__('Channel Configuration')} {__('Configure notification channels and settings')}

{__('Configure email, push notifications, WhatsApp, Telegram, and other notification channels. Set templates and connection settings.')}

{__('Email, Push, WhatsApp, Telegram')}
{/* Activity Log */}
{__('Activity Log')} {__('View notification history and activities')}

{__('Track all notification activities, view delivery status, and monitor system events.')}

{__('Coming soon')}
); }