- Integrated TourButton component into SettingsMenuPage, SkillsPage, SmsWalletPage, StaffPage, StaffSessionDetailPage, StaffTreatmentSessionsPage, SubscriptionPage, TagsSettingsPage, TreatmentCasesPage to enhance user onboarding experience. - Created new tour definitions for appointments, clinics, staff management, financial management, and patient management, ensuring comprehensive guidance for users navigating the admin panel. - Updated documentation to reflect the addition of tours and their implementation details.
24 lines
843 B
TypeScript
24 lines
843 B
TypeScript
import PageHeader from '../components/ui/PageHeader';
|
|
import InsuranceServiceCategoriesCard from '../components/InsuranceServiceCategoriesCard';
|
|
import TenantInsuranceContracts from '../components/TenantInsuranceContracts';
|
|
import FeatureGate from '../components/ui/FeatureGate';
|
|
import SettingsLayout from '../components/layout/SettingsLayout';
|
|
|
|
export default function InsurancePricingPage() {
|
|
return (
|
|
<SettingsLayout active="insurance">
|
|
<FeatureGate feature="insurance">
|
|
<div className="fade-in">
|
|
<PageHeader
|
|
title="مدیریت بیمه"
|
|
tourId="insurance-pricing"
|
|
description="قراردادهای بیمه پایه و تکمیلی"
|
|
/>
|
|
<InsuranceServiceCategoriesCard />
|
|
<TenantInsuranceContracts />
|
|
</div>
|
|
</FeatureGate>
|
|
</SettingsLayout>
|
|
);
|
|
}
|