From da2ded71ad3c2f75fb4513ca42fcf7f3a228a795 Mon Sep 17 00:00:00 2001 From: jeremygan2021 Date: Fri, 13 Feb 2026 21:55:48 +0800 Subject: [PATCH] new --- src/components/HeroSection.js | 21 ++++++++++++++++++--- src/components/ProductSection.js | 16 ++++++++++------ 2 files changed, 28 insertions(+), 9 deletions(-) diff --git a/src/components/HeroSection.js b/src/components/HeroSection.js index 3f5bd21..24e15df 100644 --- a/src/components/HeroSection.js +++ b/src/components/HeroSection.js @@ -58,10 +58,25 @@ const HeroSection = ({ isActive }) => { boxShadow: "0 10px 30px rgba(0, 245, 212, 0.3)" }} whileTap={{ scale: 0.95 }} + onClick={(e) => { + e.stopPropagation(); + window.open('https://market.quant-speed.com', '_blank'); + }} > - 了解更多 -
-
+ logo + 量迹商城 +
+
diff --git a/src/components/ProductSection.js b/src/components/ProductSection.js index cb5da63..9922725 100644 --- a/src/components/ProductSection.js +++ b/src/components/ProductSection.js @@ -245,13 +245,15 @@ const ProductSection = ({ isActive }) => { boxShadow: "0 10px 30px rgba(0, 245, 212, 0.3)" }} whileTap={{ scale: 0.95 }} - onClick={() => { + onClick={(e) => { + e.stopPropagation(); const urls = { v3: 'https://market.quant-speed.com/product/2', mini: 'https://market.quant-speed.com/product/1', v2: 'https://market.quant-speed.com/product/3' }; - window.location.href = urls[modelKey] || 'https://market.quant-speed.com'; + const targetUrl = urls[modelKey] || 'https://market.quant-speed.com'; + window.open(targetUrl, '_blank'); }} > { style={{ height: '20px', marginRight: '8px', - filter: 'brightness(0) invert(1)' + filter: 'brightness(0) invert(1)', + position: 'relative', + zIndex: 2 }} /> - 量迹商城 -
-
+ 量迹商城 +
+