'use client';
import { useState } from 'react';
import { Save, Users } from 'lucide-react';
import Link from 'next/link';
export default function SettingsPage() {
const [activeTab, setActiveTab] = useState<'general' | 'payment' | 'integrations'>('general');
return (
Settings
Manage system settings and configurations
{activeTab === 'general' && (
)}
{activeTab === 'payment' && (
Payment Providers
Telebirr
Mobile payment provider
CBE Birr
Bank payment provider
)}
{activeTab === 'integrations' && (
Verifayda 2.0 Integration
Corporate IAM Integration
)}
);
}