ソースを参照

feat: 暂时隐藏流媒体区块

F-DEV 1 時間 前
コミット
6bb1d784cf
2 ファイル変更5 行追加5 行削除
  1. 3 3
      src/pages/home/components/ChoosePlatform.tsx
  2. 2 2
      src/pages/home/index.tsx

+ 3 - 3
src/pages/home/components/ChoosePlatform.tsx

@@ -5,7 +5,7 @@ import btnAppStore from '@/assets/images/home/btn-app-store.svg';
 import btnGooglePlay from '@/assets/images/home/btn-google-play.svg';
 import btnMacos from '@/assets/images/home/btn-macos.svg';
 import btnWindows from '@/assets/images/home/btn-windows.svg';
-import devicesMockup from '@/assets/images/home/devices-mockup.png';
+// import devicesMockup from '@/assets/images/home/devices-mockup.png';
 import { /*useAppUrls,*/ type AppUrls } from '@/hooks/useAppUrls';
 import { useComingSoonDialog } from '@/hooks/useComingSoonDialog';
 
@@ -80,11 +80,11 @@ export function ChoosePlatform() {
                     </div>
                 </div>
 
-                <img
+                {/* <img
                     src={devicesMockup}
                     alt="FlashLink VPN on multiple devices"
                     className="w-full max-w-[350px] sm:max-w-[600px] lg:max-w-[786px] h-auto object-contain"
-                />
+                /> */}
             </Wrapper>
         </section>
     );

+ 2 - 2
src/pages/home/index.tsx

@@ -1,4 +1,4 @@
-import { AppAccess } from './components/AppAccess';
+// import { AppAccess } from './components/AppAccess';
 import { ChoosePlatform } from './components/ChoosePlatform';
 import { FeatureDetails } from './components/FeatureDetails';
 import { Hero } from './components/Hero';
@@ -11,7 +11,7 @@ const Home: React.FC = () => {
             <SectionDivider />
             <ChoosePlatform />
             <SectionDivider />
-            <AppAccess />
+            {/* <AppAccess /> */}
             <SectionDivider />
             <FeatureDetails />
         </div>