Add page hints to admin and user plan interfaces
CI / Backend (build + test) (push) Failing after 1m23s
CI / Frontend (lint + typecheck + build) (push) Successful in 47s

- Introduced page hints in the PlanContent, AdminPlansPage, and AdminRolesPage components to provide users with contextual information.
- Updated i18n resource files to include new translations for page hints related to plans and roles, enhancing user experience and clarity.
- Improved existing text for downgrade notices and discount tier hints for better understanding of billing implications.
This commit is contained in:
Leonid Pershin
2026-07-23 23:03:45 +03:00
parent fad03c2834
commit 694683455b
4 changed files with 18 additions and 6 deletions
+1
View File
@@ -51,6 +51,7 @@ function AdminPlansPage() {
return (
<div className="flex flex-col gap-4">
<p className="text-xs text-muted-foreground">{t('admin.plans.pageHint')}</p>
<div className="flex justify-end">
<PlanFormDialog />
</div>
+1
View File
@@ -29,6 +29,7 @@ function AdminRolesPage() {
return (
<div className="flex flex-col gap-4">
<p className="text-xs text-muted-foreground">{t('admin.roles.pageHint')}</p>
<div className="flex justify-end">
<RoleFormDialog />
</div>