// app/lib/defaultPreferences.ts

// ── Single source of truth for default prescription/page preferences ──
// Used by both the Settings page (app/dashboard/settings/page.tsx) and
// the Prescription Wizard (app/prescription/page.tsx) so that whatever
// shows as "default" in Settings is EXACTLY what the live preview
// template uses — even before the user ever saves anything.
export const DEFAULT_PREFERENCES: Record<string, any> = {
    page_size: "A4",
    page_header_size_mm: 42,
    page_footer_size_mm: 30,
    page_left_side_spacing: 8,
    page_right_side_spacing: 8,
    prescription_language: "English",
    font_size: 10,
    is_signature_required: false,
    is_doctor_info_required: false,
};