| 1 | import { TokenUsageDashboard } from '../components/token-usage/TokenUsageDashboard' |
| 2 | import { useLang } from '../i18n' |
| 3 | |
| 4 | export function TokenUsagePage(): React.JSX.Element { |
| 5 | const { t } = useLang() |
| 6 | |
| 7 | return ( |
| 8 | <div className="mx-auto w-full max-w-6xl p-6"> |
| 9 | <div className="mb-6"> |
| 10 | <p className="text-xs uppercase tracking-[0.22em] text-muted-foreground"> |
| 11 | {t('settings.usagePageEyebrow')} |
| 12 | </p> |
| 13 | <h1 className="organic-serif mt-2 text-[32px] font-semibold leading-none text-[#3e4a32]"> |
| 14 | {t('settings.usagePageTitle')} |
| 15 | </h1> |
| 16 | <p className="mt-2 text-[12px] text-muted-foreground"> |
| 17 | {t('settings.usagePageDescription')} |
| 18 | </p> |
| 19 | </div> |
| 20 | |
| 21 | <TokenUsageDashboard /> |
| 22 | </div> |
| 23 | ) |
| 24 | } |
| 25 |