Git Bridge: Add git integration

This commit is contained in:
yu-i-i
2026-03-14 02:33:19 +01:00
parent eb53dd3b22
commit c250e705b8
25 changed files with 1571 additions and 5 deletions

View File

@@ -0,0 +1,33 @@
import { useTranslation } from 'react-i18next'
import OLRow from '@/shared/components/ol/ol-row'
import OLCol from '@/shared/components/ol/ol-col'
import Cell from '@/features/settings/components/emails/cell'
export default function TokenTableHeader() {
const { t } = useTranslation()
return (
<>
<OLRow className="small">
<OLCol lg={4} className="linking-git-bridge-table-cell">
<Cell><strong>{t('token')}</strong></Cell>
</OLCol>
<OLCol lg={2} className="linking-git-bridge-table-cell">
<Cell><strong>{t('created_at')}</strong></Cell>
</OLCol>
<OLCol lg={2} className="linking-git-bridge-table-cell">
<Cell><strong>{t('last_used')}</strong></Cell>
</OLCol>
<OLCol lg={3} className="linking-git-bridge-table-cell">
<Cell><strong>{t('expires')}</strong></Cell>
</OLCol>
</OLRow>
<div className="horizontal-divider" />
<div className="horizontal-divider" />
</>
)
}