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');
+ }}
>
- 了解更多
-
- →
+
+ 量迹商城
+
+ →
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
}}
/>
- 量迹商城
-
- →
+ 量迹商城
+
+ →