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>
This commit is contained in:
Alireza Hassani
2026-08-03 00:06:44 +03:30
co-authored by Cursor
parent 66004a0fba
commit 672091d1f5
113 changed files with 4154 additions and 1451 deletions
+10 -11
View File
@@ -1,23 +1,22 @@
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="E-Payment"
subtitle="Configure online payment methods for your website checkout."
title={t('title.ePayment')}
subtitle={t('website.ePayment.subtitle')}
>
<p className={styles.placeholderLead}>
Connect payment gateways so customers can pay online through your store.
</p>
<p className={styles.placeholderNote}>
E-payment settings will be connected here. Planned options include:
</p>
<p className={styles.placeholderLead}>{t('website.ePayment.lead')}</p>
<p className={styles.placeholderNote}>{t('website.ePayment.note')}</p>
<ul className={styles.featureList}>
<li>Enable or disable online payments</li>
<li>Configure payment provider credentials</li>
<li>Set supported payment methods and test mode</li>
<li>{t('website.ePayment.feature.enable')}</li>
<li>{t('website.ePayment.feature.credentials')}</li>
<li>{t('website.ePayment.feature.methods')}</li>
</ul>
</WebsiteSectionShell>
)