Files
dashboards/apps/business/src/pages/WebsiteEPaymentPage.tsx
T
Alireza HassaniandCursor 672091d1f5 Polish business FA layout and wire special-group keys plus SSL sync.
RTL carousels/FABs, special key+title fields, slider gallery fixes, and dashboard SSL sync agent for super-admin.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-03 00:06:44 +03:30

24 lines
785 B
TypeScript

import { WebsiteSectionShell } from '../components/WebsiteSectionShell'
import { useT } from '../i18n/useT'
import styles from './WebsitePage.module.css'
export function WebsiteEPaymentPage() {
const t = useT()
return (
<WebsiteSectionShell
sectionLabel="E-Payment"
title={t('title.ePayment')}
subtitle={t('website.ePayment.subtitle')}
>
<p className={styles.placeholderLead}>{t('website.ePayment.lead')}</p>
<p className={styles.placeholderNote}>{t('website.ePayment.note')}</p>
<ul className={styles.featureList}>
<li>{t('website.ePayment.feature.enable')}</li>
<li>{t('website.ePayment.feature.credentials')}</li>
<li>{t('website.ePayment.feature.methods')}</li>
</ul>
</WebsiteSectionShell>
)
}