fix: dashboard card order, nav labels from DB, pricing rental info

- Dashboard cards reordered to match sidebar nav sequence
- Added missing "Формы записи" card to dashboard
- Nav menu reads section titles from DOM headings (not hardcoded)
- Pricing: moved subtitle inside Абонементы tab, renamed to "Доп. информация"
- Pricing: added "Доп. информация" field to Аренда tab
This commit is contained in:
2026-03-31 00:17:26 +03:00
parent ae30be8f9d
commit 2d13b82507
4 changed files with 40 additions and 17 deletions
+5
View File
@@ -156,6 +156,11 @@ export function Pricing({ data: pricing }: PricingProps) {
{/* Rental tab */}
<div id="tabpanel-rental" role="tabpanel" aria-labelledby="tab-rental" className={activeTab === "rental" ? "block" : "hidden"}>
{pricing.rentalSubtitle && (
<p className="mx-auto mt-6 max-w-2xl text-center text-sm text-neutral-500 dark:text-neutral-400">
{pricing.rentalSubtitle}
</p>
)}
<div className="mx-auto mt-10 max-w-2xl space-y-3">
{pricing.rentalItems.map((item, i) => (
<div