feat:提交反馈增加 Github 留言地址

This commit is contained in:
hzm
2026-02-04 08:49:28 +08:00
parent e7cac6f183
commit 4d50782323

View File

@@ -233,7 +233,6 @@ function FeedbackModal({ onClose }) {
style={{ width: '100%', minHeight: '120px', padding: '12px', resize: 'vertical' }} style={{ width: '100%', minHeight: '120px', padding: '12px', resize: 'vertical' }}
/> />
</div> </div>
{error && ( {error && (
<div className="error-text" style={{ marginBottom: 16, textAlign: 'center' }}> <div className="error-text" style={{ marginBottom: 16, textAlign: 'center' }}>
{error} {error}
@@ -243,6 +242,22 @@ function FeedbackModal({ onClose }) {
<button className="button" type="submit" disabled={submitting} style={{ width: '100%' }}> <button className="button" type="submit" disabled={submitting} style={{ width: '100%' }}>
{submitting ? '发送中...' : '提交反馈'} {submitting ? '发送中...' : '提交反馈'}
</button> </button>
<div style={{ marginTop: 20, paddingTop: 16, borderTop: '1px solid var(--border)', textAlign: 'center' }}>
<p className="muted" style={{ fontSize: '12px', lineHeight: '1.6' }}>
如果您有 Github 账号也可以在本项目
<a
href="https://github.com/hzm0321/real-time-fund/issues"
target="_blank"
rel="noopener noreferrer"
className="link-button"
style={{ color: 'var(--primary)', textDecoration: 'underline', padding: '0 4px', fontWeight: 600 }}
>
Issues
</a>
区留言互动
</p>
</div>
</form> </form>
)} )}
</motion.div> </motion.div>