import { useAuthStore } from '../stores/authStore'; import SettingsLayout from '../components/layout/SettingsLayout'; import FreeVisitPrice from '../components/FreeVisitPrice'; import { ScheduleSection } from '../components/schedule/ScheduleSection'; /** * مدیریت نوبت دهی — the doctor's appointment settings: visit price and the full * weekly/overrides/holidays schedule (moved here from the doctor profile). The * schedule is now managed exclusively from this page. */ export default function AppointmentSettingsPage() { const doctorUuid = useAuthStore((s) => s.doctorUuid); const dbUuid = useAuthStore((s) => s.dbUuid); const uuid = doctorUuid ?? dbUuid ?? undefined; return (

مدیریت نوبت دهی

{!uuid ? (
این بخش فقط برای پزشک در دسترس است.
) : ( )}
); }