mirror of
https://git.meshkee.com/Meshkee/dashboards.git
synced 2026-08-11 22:30:58 +04:30
Polish dashboard page chrome and user access UI.
Rename Customers to Users with FA/EN titles, compact headers and filter bars across apps, and refine manager role copy plus a customer-header link to the business dashboard. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
co-authored by
Cursor
parent
beec3035e5
commit
6c52ce1247
@@ -0,0 +1,17 @@
|
||||
import type { ReactNode } from 'react'
|
||||
import pageStyles from './PageContent.module.css'
|
||||
|
||||
interface PageTitleProps {
|
||||
children: ReactNode
|
||||
/** English accent shown after a bullet (e.g. USERS). */
|
||||
en?: string
|
||||
}
|
||||
|
||||
export function PageTitle({ children, en }: PageTitleProps) {
|
||||
return (
|
||||
<h2 className={pageStyles.pageTitle}>
|
||||
{children}
|
||||
{en ? <span className={pageStyles.pageTitleEn}>{en}</span> : null}
|
||||
</h2>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user