diff --git a/web/src/pages/Home/index.jsx b/web/src/pages/Home/index.jsx
index cffaf33..c2cf0c1 100644
--- a/web/src/pages/Home/index.jsx
+++ b/web/src/pages/Home/index.jsx
@@ -605,6 +605,48 @@ function FAQ() {
);
}
+/* ═══════════════ SECTION: CONTACT US ═══════════════ */
+function ContactUs() {
+ const { t } = useTranslation();
+ return (
+
+
+
{t('联系我们')}
+
如有任何问题或合作需求,欢迎随时联系
+
+
+
+
{t('邮箱联系')}
+
support@turingtoken.com
+
+
+
+
{t('在线客服')}
+
工作日 9:00 - 18:00 在线
+
+
+
+
{t('商务合作')}
+
business@turingtoken.com
+
+
+
+
+ );
+}
+
/* ═══════════════ FOOTER ═══════════════ */
function Footer() {
const { t } = useTranslation();
@@ -665,6 +707,7 @@ const Home = () => (
+
);