Explorar el Código

refactor(产品文档): 删除过时的产品文件并优化查询参数处理

- 删除了多个过时的产品文档,包括DDR3内存和SSD产品,保持数据的整洁性和一致性。
- 优化了LanguageSwitcher组件中的查询参数处理逻辑,确保在没有查询参数时不会导致错误。
- 更新了首页和产品页面的样式,提升了用户体验和视觉效果。

这些修改旨在清理冗余数据,提升代码的可维护性,并确保用户在使用过程中获得更好的体验。
master
lizhuang hace 4 semanas
padre
commit
0896dcd15c
Se han modificado 47 ficheros con 69 adiciones y 1096 borrados
  1. 8
    5
      components/LanguageSwitcher.vue
  2. 2
    0
      components/TheHeader.vue
  3. 0
    81
      content/products/en/#030.W400-128GSY01.md
  4. 0
    81
      content/products/en/#031.W400-256GSY01.md
  5. 0
    81
      content/products/en/#033.W400-1TBSY01.md
  6. 0
    53
      content/products/en/#053.E30-2TBTN1.md
  7. 0
    45
      content/products/en/#232.DDR3-SODIMM-8GB-1.5V.md
  8. 1
    1
      content/products/en/100.SD-HC32GBU1.md
  9. 1
    0
      content/products/en/101.SD-XC64GBU3.md
  10. 1
    0
      content/products/en/102.SD-XC128GBU3.md
  11. 1
    0
      content/products/en/110.UD-032G01A1.md
  12. 1
    0
      content/products/en/111.UD-064G01A1.md
  13. 1
    1
      content/products/en/112.UD-128G01A1.md
  14. 1
    0
      content/products/en/113.UD-256G01A1.md
  15. 1
    0
      content/products/en/114.UD-512G01A1.md
  16. 0
    82
      content/products/ja/#030.W400-128GSY01.md
  17. 0
    82
      content/products/ja/#031.W400-256GSY01.md
  18. 0
    82
      content/products/ja/#033.W400-1TBSY01.md
  19. 0
    55
      content/products/ja/#053.E30-2TBTN1.md
  20. 0
    47
      content/products/ja/#232.DDR3-SODIMM-8GB-1.5V.md
  21. 1
    1
      content/products/ja/100.SD-HC32GBU1.md
  22. 1
    0
      content/products/ja/101.SD-XC64GBU3.md
  23. 1
    0
      content/products/ja/102.SD-XC128GBU3.md
  24. 1
    0
      content/products/ja/110.UD-032G01A1.md
  25. 1
    0
      content/products/ja/111.UD-064G01A1.md
  26. 1
    0
      content/products/ja/112.UD-128G01A1.md
  27. 1
    0
      content/products/ja/113.UD-256G01A1.md
  28. 1
    0
      content/products/ja/114.UD-512G01A1.md
  29. 0
    54
      content/products/zh/#030.W400-128GSY01.md
  30. 0
    54
      content/products/zh/#031.W400-256GSY01.md
  31. 0
    54
      content/products/zh/#033.W400-1TBSY01.md
  32. 0
    54
      content/products/zh/#053.E30-2TBTN1.md
  33. 0
    46
      content/products/zh/#232.DDR3-SODIMM-8GB-1.5V.md
  34. 1
    1
      content/products/zh/100.SD-HC32GBU1.md
  35. 1
    0
      content/products/zh/101.SD-XC64GBU3.md
  36. 1
    0
      content/products/zh/102.SD-XC128GBU3.md
  37. 1
    0
      content/products/zh/110.UD-032G01A1.md
  38. 1
    0
      content/products/zh/111.UD-064G01A1.md
  39. 1
    0
      content/products/zh/112.UD-128G01A1.md
  40. 1
    0
      content/products/zh/113.UD-256G01A1.md
  41. 1
    0
      content/products/zh/114.UD-512G01A1.md
  42. 28
    47
      pages/index.vue
  43. 0
    2
      prerenderRoutes.json
  44. 1
    1
      public/data/categories-ja.json
  45. 2
    48
      public/data/products-en.json
  46. 2
    28
      public/data/products-ja.json
  47. 2
    10
      public/data/products-zh.json

+ 8
- 5
components/LanguageSwitcher.vue Ver fichero

@@ -97,11 +97,14 @@ async function selectLanguage(langCode: string) {
// 获取当前查询参数
const query = window.location.search;

const audiences = query
.split("?")[1]
.split("&")
.find((item) => item.startsWith("audiences="))
?.split("=")[1];
const audiences =
query.length && query.split("?")[1]
? query
.split("?")[1]
.split("&")
.find((item) => item.startsWith("audiences="))
?.split("=")[1]
: "";

// 构建新URL,不包含任何查询参数
const newUrl = `${window.location.origin}${path}${

+ 2
- 0
components/TheHeader.vue Ver fichero

@@ -69,6 +69,7 @@
<nuxt-link
:to="`${homePath}products?audiences=1`"
class="flex items-center gap-4"
@click="handleMouseLeave"
>
<div
class="p-2 rounded-lg bg-gradient-to-br from-blue-500/20 to-indigo-500/20 group-hover/card:from-blue-500/30 group-hover/card:to-indigo-500/30 transition-all duration-500"
@@ -126,6 +127,7 @@
<nuxt-link
:to="`${homePath}products?audiences=0`"
class="flex items-center gap-4"
@click="handleMouseLeave"
>
<div
class="p-2 rounded-lg bg-gradient-to-br from-cyan-500/20 to-blue-500/20 group-hover/card:from-cyan-500/30 group-hover/card:to-blue-500/30 transition-all duration-500"

+ 0
- 81
content/products/en/#030.W400-128GSY01.md Ver fichero

@@ -1,81 +0,0 @@
<!-- ---
title: W400-128GSY01
name: W400-128GSY01
description:
id: 14
categoryId: 2
tag: "2.5-inch SATA III"
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"]
series: ["W400 Series"]
image: /images/products/2.5-inch SSD_M.2 SSD/W400-128GSY01/w400-128gsy01.webp
gallery: [
]
summary: Max transfer speed up to 520MB/s, can significantly shorten boot times and loading times!
capacities: ["128GB"]
---


# Product Specifications

| Feature | Description |
| :----------------- | :------------------------------------------- |
| **Capacity** | 128GB (User available capacity approx. 119GB) |
| **Product Model** | W400-128GSY01 |
| **Interface** | SATA 6Gbps (SATA III) |
| **Flash Type** | 3D NAND TLC |
| **Sequential Read Speed Up To** | 520MB/s |
| **Form Factor** | 2.5-inch (7mm thickness) |
| **Physical Dimensions (mm)** | 100.2 (L) × 69.85 (W) × 7.00 (H) |
| **Operating Temperature** | 0°C to 70°C |
| **Storage Temperature** | -40°C to 85°C |
| **Casing Feature** | Uses a lightweight and durable aluminum casing, making the product more robust. |
| **Warranty Period** | 3-Year Warranty |




# Hanye Brand, Trustworthy

All Hanye products are rigorously tested using professional equipment and software to ensure higher quality.

## Product Features

* High-Speed Transfer
* Low Heat Generation
* High Performance
* Data Protection
* Error Correction Function
* Low Noise
* Low Power Consumption
* Shock Resistant
* Wide Compatibility
* Shorten Computer Boot Time

Compared to traditional HDDs, speed is significantly improved, allowing Windows to boot quickly.
No need to change data and settings, no need to reinstall the operating system!

## Excellent Transfer Speed

Max transfer speed up to 520MB/s, can significantly shorten boot times and loading times!

## Suitable for Various Laptops and Desktops

Suitable for a wider range of systems, ideal for slim laptops and systems with limited space.

## Protects Data Security

Features error correction, correcting errors during data transmission to ensure data transfer security!

## Aluminum Casing

Uses a lightweight and durable aluminum casing.
Good heat dissipation, making the product more robust and durable.

## Stable and Durable

Unlike traditional hard drives, there are no complex moving parts, thus reducing noise and being more shock resistant.
Data remains intact even if the computer is dropped!

## Easy to Install, No Computer Skills Required

Installation is super easy! Any computer that supports the 2.5-inch SATA specification can be upgraded with this product. -->

+ 0
- 81
content/products/en/#031.W400-256GSY01.md Ver fichero

@@ -1,81 +0,0 @@
<!-- ---
title: W400-256GSY01
name: W400-256GSY01
description:
id: 15
categoryId: 2
tag: "2.5-inch SATA III"
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"]
series: ["W400 Series"]
image: /images/products/2.5-inch SSD_M.2 SSD/W400-256GSY01/w400-256gsy01.webp
gallery: [
]
summary: Max transfer speed up to 520MB/s, can significantly shorten boot times and loading times!
capacities: ["256GB"]
---


# Product Specifications

| Feature | Description |
| :----------------- | :------------------------------------------- |
| **Capacity** | 256GB (User available capacity approx. 238GB) |
| **Product Model** | W400-256GSY01 |
| **Interface** | SATA 6Gbps (SATA III) |
| **Flash Type** | 3D NAND TLC |
| **Sequential Read Speed Up To** | 520MB/s |
| **Form Factor** | 2.5-inch (7mm thickness) |
| **Physical Dimensions (mm)** | 100.2 (L) × 69.85 (W) × 7.00 (H) |
| **Operating Temperature** | 0°C to 70°C |
| **Storage Temperature** | -40°C to 85°C |
| **Casing Feature** | Uses a lightweight and durable aluminum casing, making the product more robust. |
| **Warranty Period** | 3-Year Warranty |




# Hanye Brand, Trustworthy

All Hanye products are rigorously tested using professional equipment and software to ensure higher quality.

## Product Features

* High-Speed Transfer
* Low Heat Generation
* High Performance
* Data Protection
* Error Correction Function
* Low Noise
* Low Power Consumption
* Shock Resistant
* Wide Compatibility
* Shorten Computer Boot Time

Compared to traditional HDDs, speed is significantly improved, allowing Windows to boot quickly.
No need to change data and settings, no need to reinstall the operating system!

## Excellent Transfer Speed

Max transfer speed up to 520MB/s, can significantly shorten boot times and loading times!

## Suitable for Various Laptops and Desktops

Suitable for a wider range of systems, ideal for slim laptops and systems with limited space.

## Protects Data Security

Features error correction, correcting errors during data transmission to ensure data transfer security!

## Aluminum Casing

Uses a lightweight and durable aluminum casing.
Good heat dissipation, making the product more robust and durable.

## Stable and Durable

Unlike traditional hard drives, there are no complex moving parts, thus reducing noise and being more shock resistant.
Data remains intact even if the computer is dropped!

## Easy to Install, No Computer Skills Required

Installation is super easy! Any computer that supports the 2.5-inch SATA specification can be upgraded with this product. -->

+ 0
- 81
content/products/en/#033.W400-1TBSY01.md Ver fichero

@@ -1,81 +0,0 @@
<!-- ---
title: W400-1TBSY01
name: W400-1TBSY01
description:
id: 17
categoryId: 2
tag: "2.5-inch SATA III"
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"]
series: ["W400 Series"]
image: /images/products/2.5-inch SSD_M.2 SSD/W400-1TBSY01/w400-1tbsy01.webp
gallery: [
]
summary: Max transfer speed up to 520MB/s, can significantly shorten boot times and loading times!
capacities: ["1TB"]
---


# Product Specifications

| Feature | Description |
| :----------------- | :------------------------------------------- |
| **Capacity** | 1TB (1000GB) (User available capacity approx. 952GB) |
| **Product Model** | W400-1TBSY01 |
| **Interface** | SATA 6Gbps (SATA III) |
| **Flash Type** | 3D NAND TLC |
| **Sequential Read Speed Up To** | 520MB/s |
| **Form Factor** | 2.5-inch (7mm thickness) |
| **Physical Dimensions (mm)** | 100.2 (L) × 69.85 (W) × 7.00 (H) |
| **Operating Temperature** | 0°C to 70°C |
| **Storage Temperature** | -40°C to 85°C |
| **Casing Feature** | Uses a lightweight and durable aluminum casing, making the product more robust. |
| **Warranty Period** | 3-Year Warranty |




# Hanye Brand, Trustworthy

All Hanye products are rigorously tested using professional equipment and software to ensure higher quality.

## Product Features

* High-Speed Transfer
* Low Heat Generation
* High Performance
* Data Protection
* Error Correction Function
* Low Noise
* Low Power Consumption
* Shock Resistant
* Wide Compatibility
* Shorten Computer Boot Time

Compared to traditional HDDs, speed is significantly improved, allowing Windows to boot quickly.
No need to change data and settings, no need to reinstall the operating system!

## Excellent Transfer Speed

Max transfer speed up to 520MB/s, can significantly shorten boot times and loading times!

## Suitable for Various Laptops and Desktops

Suitable for a wider range of systems, ideal for slim laptops and systems with limited space.

## Protects Data Security

Features error correction, correcting errors during data transmission to ensure data transfer security!

## Aluminum Casing

Uses a lightweight and durable aluminum casing.
Good heat dissipation, making the product more robust and durable.

## Stable and Durable

Unlike traditional hard drives, there are no complex moving parts, thus reducing noise and being more shock resistant.
Data remains intact even if the computer is dropped!

## Easy to Install, No Computer Skills Required

Installation is super easy! Any computer that supports the 2.5-inch SATA specification can be upgraded with this product. -->

+ 0
- 53
content/products/en/#053.E30-2TBTN1.md Ver fichero

@@ -1,53 +0,0 @@
<!-- ---
title: E30-2TBTN1
name: E30-2TBTN1
model: E30-2TBTN1-EB
description:
id: 25
categoryId: 2
tag: "PCIe NVMe M.2"
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"]
series: ["E30 Series"]
image: /images/products/2.5-inch SSD_M.2 SSD/E30-2TBTN1/e30-2tbtn1.webp
gallery: [
]
summary: High-speed, reliable PCIe NVMe M.2 2280 SSD, offering excellent performance and storage capacity
capacities: ["2TB"]
---


# Product Specifications

| Feature | E30-256GTN1-EB | E30-512GTN1-EB | E30-1TBTN1-EB |
| :--------------- | :---------------- | :---------------- | :---------------- |
| **Model** | E30-256GTN1-EB | E30-512GTN1-EB | E30-1TBTN1-EB |
| **Capacity** | 256GB | 512GB | 1TB |
| **Form Factor** | M.2 2280 | M.2 2280 | M.2 2280 |
| **Connector** | M.2 (M Key) | M.2 (M Key) | M.2 (M Key) |
| **Interface** | NVMe/PCIe Gen3 x4 | NVMe/PCIe Gen3 x4 | NVMe/PCIe Gen3 x4 |
| **Flash Memory** | 3D Nand TLC | 3D Nand TLC | 3D Nand TLC |
| **Sequential Read (Max)** | 3000MB/s | 3500MB/s | 3500MB/s |
| **Sequential Write (Max)** | 1200MB/s | 2700MB/s | 3200MB/s |
| **Durability (TBW)** | 200TB | 500TB | 900TB |
| **Operating Temp. Range** | 0~70°C | 0~70°C | 0~70°C |
| **Storage Temp. Range** | -45~95°C | -45~95°C | -45~95°C |
| **Operating Voltage** | 3.3V ±5% | 3.3V ±5% | 3.3V ±5% |
| **Dimensions (mm)**| 80mm x 22mm x 2.05mm | 80mm x 22mm x 2.05mm | 80mm x 22mm x 2.05mm |

# Product Features

## High Durability & High-Speed Operation

Supports NVMe PCIe Gen3 with 3D NAND TLC, achieving high-speed and highly durable data transfer, significantly shortening PC boot and load times.

## Compact Design

Slim M.2 2280 form factor compatible with desktop, notebook, and small PCs. Easy to install with no wiring required.

## Comprehensive Data Protection Features

Supports LDPC ECC and RAID to enhance data accuracy and reliability. TRIM function enables high-speed processing and extends lifespan, while S.M.A.R.T. allows constant monitoring and management of SSD status.

## Shock-Resistant & Silent Design

Strong against shock and vibration, providing a comfortable user environment with quiet operation. -->

+ 0
- 45
content/products/en/#232.DDR3-SODIMM-8GB-1.5V.md Ver fichero

@@ -1,45 +0,0 @@
<!-- ---
title: DDR3-SODIMM-8GB-1.5V
name: DDR3-SODIMM-8GB-1.5V
description:
id: 43
categoryId: 3
usage: ["Memory Upgrade/Performance Enhancement"]
series: ["DDR3"]
image: /images/products/DDR/DDR3-SODIMM-8GB-1.5V/ddr3-sodimm-8gb-1.5v.webp
gallery: [
]
summary: Easy to install, no computer skills required
capacities: ["8GB"]
---


# Product Specifications

| Feature | Description |
| :----------- | :------------------------------------- |
| **Manufacturer** | Hanye |
| **Specification** | PC3-12800 (DDR3L-1600) |
| **Capacity** | 8GB (8GB x 1 stick) |
| **Type** | 204Pin DDR3 SODIMM |
| **Voltage** | 1.5V |
| **Warranty** | 5-year warranty |




# Hanye Brand, Trustworthy

All Hanye products are rigorously tested using professional equipment and software to ensure higher quality.

## Enhance Laptop Performance

Additional memory can be added to speed up the system and keep it running smoothly.

## Boost Speed

Increased memory speed and more memory mean applications can load in seconds.

## Easy to Install, No Computer Skills Required

Installing memory does not require professional computer skills. -->

+ 1
- 1
content/products/en/100.SD-HC32GBU1.md Ver fichero

@@ -13,7 +13,7 @@ gallery: [
]
summary: Suitable for digital cameras, camcorders, read speed up to 100MB/s.
capacities: ["32GB"]
sort: 1
sort: 100
---



+ 1
- 0
content/products/en/101.SD-XC64GBU3.md Ver fichero

@@ -13,6 +13,7 @@ gallery: [
]
summary: Suitable for digital cameras, camcorders, read speed up to 100MB/s.
capacities: ["64GB"]
sort: 101
---



+ 1
- 0
content/products/en/102.SD-XC128GBU3.md Ver fichero

@@ -13,6 +13,7 @@ gallery: [
]
summary: Suitable for digital cameras, camcorders, read speed up to 100MB/s.
capacities: ["128GB"]
sort: 102
---



+ 1
- 0
content/products/en/110.UD-032G01A1.md Ver fichero

@@ -22,6 +22,7 @@ gallery: [
]
summary: Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.
capacities: ["32GB"]
sort: 110
---



+ 1
- 0
content/products/en/111.UD-064G01A1.md Ver fichero

@@ -29,6 +29,7 @@ gallery: [
]
summary: Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.
capacities: ["64GB"]
sort: 111
---



+ 1
- 1
content/products/en/112.UD-128G01A1.md Ver fichero

@@ -28,10 +28,10 @@ gallery: [
"/images/products/microSD/UD-128G01A1/ud-128g01a1-16.webp",
"/images/products/microSD/UD-128G01A1/ud-128g01a1-17.webp",
"/images/products/microSD/UD-128G01A1/ud-128g01a1-18.webp",

]
summary: Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.
capacities: ["128GB"]
sort: 112
---



+ 1
- 0
content/products/en/113.UD-256G01A1.md Ver fichero

@@ -31,6 +31,7 @@ gallery: [
]
summary: Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.
capacities: ["256GB"]
sort: 113
---



+ 1
- 0
content/products/en/114.UD-512G01A1.md Ver fichero

@@ -30,6 +30,7 @@ gallery: [
]
summary: Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.
capacities: ["512GB"]
sort: 114
---



+ 0
- 82
content/products/ja/#030.W400-128GSY01.md Ver fichero

@@ -1,82 +0,0 @@
<!-- ---
title: W400-128GSY01
name: W400-128GSY01
model:
description:
id: 14
categoryId: 2
tag: "2.5-inch SATA III"
usage: ["システム起動ディスク", "ゲーム高速化/ストレージ", "オフィス/学習用拡張ストレージ"]
series: ["W400 Series"]
image: /images/products/2.5-inch SSD_M.2 SSD/W400-128GSY01/w400-128gsy01.webp
gallery: [
]
summary: 最大転送速度は最大520MB/sで、起動時間や読み込み時間を大幅に短縮できます!
capacities: ["128GB"]
---


# 製品仕様

| 特性 | 説明 |
| :----------------- | :------------------------------------------- |
| **容量** | 128GB (ユーザーが利用可能な容量は約 119GB) |
| **製品型番** | W400-128GSY01 |
| **インターフェース**| SATA 6Gbps (SATA III) |
| **フラッシュタイプ**| 3D NAND TLC |
| **シーケンシャルリード速度 (最大)**| 520MB/秒 |
| **フォームファクター**| 2.5インチ (厚さ 7mm) |
| **物理サイズ (mm)** | 100.2 (長さ) × 69.85 (幅) × 7.00 (高さ) |
| **動作温度** | 0°C ~ 70°C |
| **保存温度** | -40°C ~ 85°C |
| **筐体特徴** | 軽量で耐久性に優れたアルミニウム製筐体を採用し、製品の堅牢性を高めています。 |
| **保証期間** | 3年保証 |




# Hanyeブランド、信頼できる品質

すべてのHanye製品は、より高品質を確保するために、専門の設備とソフトウェアで厳しくテストされています。

## 製品特徴

* 高速転送
* 低発熱
* 高性能
* データ保護
* エラー訂正機能
* 低ノイズ
* 低消費電力
* 耐衝撃性
* 幅広い互換性
* パソコンの起動時間を短縮

従来のHDDと比較して速度が大幅に向上し、Windowsが高速に起動します。
データや設定を変更する必要がなく、OSの再インストールも不要です!

## 優れた転送速度

最大転送速度は最大520MB/sで、起動時間や読み込み時間を大幅に短縮できます!

## 様々なノートパソコンやデスクトップPCに対応

幅広いシステムに対応しており、薄型ノートパソコンやスペースに制限のあるシステムに最適です。

## データ保護

エラー訂正機能を搭載しており、データ転送時のエラーを訂正し、データの安全性を保証します!

## アルミニウム製筐体

軽量で耐久性に優れたアルミニウム製筐体を採用。
放熱性にも優れており、製品の堅牢性を高めています。

## 安定した耐久性

従来のHDDとは異なり、複雑な可動部品がないため、ノイズが少なく、耐衝撃性にも優れています。
パソコンが落下してもデータは損傷しません!

## 簡単インストール、PCスキル不要

インストールは非常に簡単です!2.5インチSATA規格に対応したパソコンであれば、本製品に交換可能です。 -->

+ 0
- 82
content/products/ja/#031.W400-256GSY01.md Ver fichero

@@ -1,82 +0,0 @@
<!-- ---
title: W400-256GSY01
name: W400-256GSY01
model:
description: ノートパソコンおよびデスクトップPC用の高性能2.5インチSATA III SSD
id: 15
categoryId: 2
tag: "2.5-inch SATA III"
usage: ["システム起動ディスク", "ゲーム高速化/ストレージ", "オフィス/学習用拡張ストレージ"]
series: ["W400 Series"]
image: /images/products/2.5-inch SSD_M.2 SSD/W400-256GSY01/w400-256gsy01.webp
gallery: [
]
summary: 最大転送速度は最大520MB/sで、起動時間や読み込み時間を大幅に短縮できます!
capacities: ["256GB"]
---


# 製品仕様

| 特性 | 説明 |
| :----------------- | :------------------------------------------- |
| **容量** | 256GB (ユーザーが利用可能な容量は約 238GB) |
| **製品型番** | W400-256GSY01 |
| **インターフェース**| SATA 6Gbps (SATA III) |
| **フラッシュタイプ**| 3D NAND TLC |
| **シーケンシャルリード速度 (最大)**| 520MB/秒 |
| **フォームファクター**| 2.5インチ (厚さ 7mm) |
| **物理サイズ (mm)** | 100.2 (長さ) × 69.85 (幅) × 7.00 (高さ) |
| **動作温度** | 0°C ~ 70°C |
| **保存温度** | -40°C ~ 85°C |
| **筐体特徴** | 軽量で耐久性に優れたアルミニウム製筐体を採用し、製品の堅牢性を高めています。 |
| **保証期間** | 3年保証 |




# Hanyeブランド、信頼できる品質

すべてのHanye製品は、より高品質を確保するために、専門の設備とソフトウェアで厳しくテストされています。

## 製品特徴

* 高速転送
* 低発熱
* 高性能
* データ保護
* エラー訂正機能
* 低ノイズ
* 低消費電力
* 耐衝撃性
* 幅広い互換性
* パソコンの起動時間を短縮

従来のHDDと比較して速度が大幅に向上し、Windowsが高速に起動します。
データや設定を変更する必要がなく、OSの再インストールも不要です!

## 優れた転送速度

最大転送速度は最大520MB/sで、起動時間や読み込み時間を大幅に短縮できます!

## 様々なノートパソコンやデスクトップPCに対応

幅広いシステムに対応しており、薄型ノートパソコンやスペースに制限のあるシステムに最適です。

## データ保護

エラー訂正機能を搭載しており、データ転送時のエラーを訂正し、データの安全性を保証します!

## アルミニウム製筐体

軽量で耐久性に優れたアルミニウム製筐体を採用。
放熱性にも優れており、製品の堅牢性を高めています。

## 安定した耐久性

従来のHDDとは異なり、複雑な可動部品がないため、ノイズが少なく、耐衝撃性にも優れています。
パソコンが落下してもデータは損傷しません!

## 簡単インストール、PCスキル不要

インストールは非常に簡単です!2.5インチSATA規格に対応したパソコンであれば、本製品に交換可能です。 -->

+ 0
- 82
content/products/ja/#033.W400-1TBSY01.md Ver fichero

@@ -1,82 +0,0 @@
<!-- ---
title: W400-1TBSY01
name: W400-1TBSY01
model:
description:
id: 17
categoryId: 2
tag: "2.5-inch SATA III"
usage: ["システム起動ディスク", "ゲーム高速化/ストレージ", "オフィス/学習用拡張ストレージ"]
series: ["W400 Series"]
image: /images/products/2.5-inch SSD_M.2 SSD/W400-1TBSY01/w400-1tbsy01.webp
gallery: [
]
summary: 最大転送速度は最大520MB/sで、起動時間や読み込み時間を大幅に短縮できます!
capacities: ["1TB"]
---


# 製品仕様

| 特性 | 説明 |
| :----------------- | :------------------------------------------- |
| **容量** | 1TB (1000GB) (ユーザーが利用可能な容量は約 952GB) |
| **製品型番** | W400-1TBSY01 |
| **インターフェース**| SATA 6Gbps (SATA III) |
| **フラッシュタイプ**| 3D NAND TLC |
| **シーケンシャルリード速度 (最大)**| 520MB/秒 |
| **フォームファクター**| 2.5インチ (厚さ 7mm) |
| **物理サイズ (mm)** | 100.2 (長さ) × 69.85 (幅) × 7.00 (高さ) |
| **動作温度** | 0°C ~ 70°C |
| **保存温度** | -40°C ~ 85°C |
| **筐体特徴** | 軽量で耐久性に優れたアルミニウム製筐体を採用し、製品の堅牢性を高めています。 |
| **保証期間** | 3年保証 |




# Hanyeブランド、信頼できる品質

すべてのHanye製品は、より高品質を確保するために、専門の設備とソフトウェアで厳しくテストされています。

## 製品特徴

* 高速転送
* 低発熱
* 高性能
* データ保護
* エラー訂正機能
* 低ノイズ
* 低消費電力
* 耐衝撃性
* 幅広い互換性
* パソコンの起動時間を短縮

従来のHDDと比較して速度が大幅に向上し、Windowsが高速に起動します。
データや設定を変更する必要がなく、OSの再インストールも不要です!

## 優れた転送速度

最大転送速度は最大520MB/sで、起動時間や読み込み時間を大幅に短縮できます!

## 様々なノートパソコンやデスクトップPCに対応

幅広いシステムに対応しており、薄型ノートパソコンやスペースに制限のあるシステムに最適です。

## データ保護

エラー訂正機能を搭載しており、データ転送時のエラーを訂正し、データの安全性を保証します!

## アルミニウム製筐体

軽量で耐久性に優れたアルミニウム製筐体を採用。
放熱性にも優れており、製品の堅牢性を高めています。

## 安定した耐久性

従来のHDDとは異なり、複雑な可動部品がないため、ノイズが少なく、耐衝撃性にも優れています。
パソコンが落下してもデータは損傷しません!

## 簡単インストール、PCスキル不要

インストールは非常に簡単です!2.5インチSATA規格に対応したパソコンであれば、本製品に交換可能です。 -->

+ 0
- 55
content/products/ja/#053.E30-2TBTN1.md Ver fichero

@@ -1,55 +0,0 @@
<!-- ---
title: E30-2TBTN1
name: E30-2TBTN1
model: E30-2TBTN1-EB
description: ノートPCやデスクトップPC向けの高性能PCIe NVMe M.2 2280 SSD
id: 25
categoryId: 2
tag: "PCIe NVMe M.2"
usage: ["システム起動ドライブ", "ゲーム加速/ストレージ", "オフィス/学習用ストレージ"]
series: ["E30 Series"]
image: /images/products/2.5-inch SSD_M.2 SSD/E30-2TBTN1/e30-2tbtn1.webp
gallery: [
]
summary: 3D NAND TLCテクノロジーを採用し、PCの高速起動を実現し、ファイルやアプリケーションの実行を高速化します。
capacities: ["2TB"]
---


# 製品仕様

| 項目 | E30-256GTN1-EB | E30-512GTN1-EB | E30-1TBTN1-EB |
| :------------------- | :---------------- | :---------------- | :---------------- |
| **型番** | E30-256GTN1-EB | E30-512GTN1-EB | E30-1TBTN1-EB |
| **容量** | 256GB | 512GB | 1TB |
| **フォームファクタ** | M.2 2280 | M.2 2280 | M.2 2280 |
| **コネクタ** | M.2 (M Key) | M.2 (M Key) | M.2 (M Key) |
| **インターフェース** | NVMe/PCIe Gen3 x4 | NVMe/PCIe Gen3 x4 | NVMe/PCIe Gen3 x4 |
| **フラッシュメモリ** | 3D Nand TLC | 3D Nand TLC | 3D Nand TLC |
| **シーケンシャルリード (最大)** | 3000MB/s | 3500MB/s | 3500MB/s |
| **シーケンシャルライト (最大)** | 1200MB/s | 2700MB/s | 3200MB/s |
| **耐久性 (TBW)** | 200TB | 500TB | 900TB |
| **動作温度範囲** | 0~70°C | 0~70°C | 0~70°C |
| **保存温度範囲** | -45~95°C | -45~95°C | -45~95°C |
| **動作電圧** | 3.3V ±5% | 3.3V ±5% | 3.3V ±5% |
| **外形寸法 (mm)** | 80mm x 22mm x 2.05mm | 80mm x 22mm x 2.05mm | 80mm x 22mm x 2.05mm |

# 製品特徴

## 高耐久・高速動作

3D NAND TLC搭載のNVMe PCIe Gen3対応で、高速かつ高耐久なデータ転送を実現し、PCの起動やロード時間を大幅に短縮。

## コンパクト設計

薄型M.2 2280フォームファクタでデスクトップ、ノートPC、小型PCに対応。配線不要で簡単に取り付け可能。

## 充実のデータ保護機能

LDPC ECCとRAID対応でデータの正確性と信頼性を強化。TRIM機能により高速処理と寿命延長を実現し、S.M.A.R.TでSSDの状態を常に監視・管理可能。

## 耐衝撃・静音設計

衝撃や振動に強く、静かな動作音で快適な使用環境を提供。
-->

+ 0
- 47
content/products/ja/#232.DDR3-SODIMM-8GB-1.5V.md Ver fichero

@@ -1,47 +0,0 @@
<!-- ---
title: DDR3-SODIMM-8GB-1.5V
name: DDR3-SODIMM-8GB-1.5V
model:
description: ノートPC用DDR3 SODIMMメモリ、8GB容量
id: 43
categoryId: 3
usage: ["メモリアップグレード/パフォーマンス向上"]
series: ["DDR3"]
image: /images/products/DDR/DDR3-SODIMM-8GB-1.5V/ddr3-sodimm-8gb-1.5v.webp
gallery: [
]
summary: 簡単な取り付け、専門知識不要
capacities: ["8GB"]
---


# 製品仕様

| 特性 | 説明 |
| :----------- | :------------------------------------- |
| **メーカー** | Hanye |
| **規格** | PC3-12800 (DDR3L-1600) |
| **容量** | 8GB (8GB x 1枚) |
| **タイプ** | 204Pin DDR3 SODIMM |
| **電圧** | 1.5V |
| **保証期間** | 5年 |




# Hanyeブランド、信頼の品質

すべてのHanye製品は、専門機器とソフトウェアによる厳格な検査を実施し、より高品質を確保しています。

## ノートPCのパフォーマンス向上

追加メモリを搭載することで、システムの動作速度を向上させ、スムーズな動作を維持します。

## 速度の向上

メモリ速度の向上と容量の増加により、アプリケーションの起動が数秒で完了します。

## 簡単な取り付け、専門知識不要

メモリの取り付けに専門的なコンピュータスキルは必要ありません。 -->

+ 1
- 1
content/products/ja/100.SD-HC32GBU1.md Ver fichero

@@ -13,7 +13,7 @@ gallery: [
]
summary: デジタルカメラ、ビデオカメラ向け、読み取り速度最大100MB/秒
capacities: ["32GB"]
sort: 1
sort: 100
---



+ 1
- 0
content/products/ja/101.SD-XC64GBU3.md Ver fichero

@@ -13,6 +13,7 @@ gallery: [
]
summary: デジタルカメラ、ビデオカメラ向け、読み取り速度最大100MB/秒
capacities: ["64GB"]
sort: 101
---



+ 1
- 0
content/products/ja/102.SD-XC128GBU3.md Ver fichero

@@ -13,6 +13,7 @@ gallery: [
]
summary: デジタルカメラ、ビデオカメラ向け、読み取り速度最大100MB/秒
capacities: ["128GB"]
sort: 102
---



+ 1
- 0
content/products/ja/110.UD-032G01A1.md Ver fichero

@@ -22,6 +22,7 @@ gallery: [
]
summary: Nintendo Switch、スマートフォン、ドライブレコーダー、アクションカメラなど、さまざまなデバイスにおすすめのmicroSDカード。
capacities: ["32GB"]
sort: 110
---



+ 1
- 0
content/products/ja/111.UD-064G01A1.md Ver fichero

@@ -29,6 +29,7 @@ gallery: [
]
summary: Nintendo Switch、スマートフォン、ドライブレコーダー、アクションカメラなど、さまざまなデバイスにおすすめのmicroSDカード。
capacities: ["64GB"]
sort: 111
---



+ 1
- 0
content/products/ja/112.UD-128G01A1.md Ver fichero

@@ -32,6 +32,7 @@ gallery: [
]
summary: Nintendo Switch、スマートフォン、ドライブレコーダー、アクションカメラなど、さまざまなデバイスにおすすめのmicroSDカード。
capacities: ["128GB"]
sort: 112
---



+ 1
- 0
content/products/ja/113.UD-256G01A1.md Ver fichero

@@ -31,6 +31,7 @@ gallery: [
]
summary: Nintendo Switch、スマートフォン、ドライブレコーダー、アクションカメラなど、さまざまなデバイスにおすすめのmicroSDカード。
capacities: ["256GB"]
sort: 113
---



+ 1
- 0
content/products/ja/114.UD-512G01A1.md Ver fichero

@@ -30,6 +30,7 @@ gallery: [
]
summary: Nintendo Switch、スマートフォン、ドライブレコーダー、アクションカメラなど、さまざまなデバイスにおすすめのmicroSDカード。
capacities: ["512GB"]
sort: 114
---



+ 0
- 54
content/products/zh/#030.W400-128GSY01.md Ver fichero

@@ -1,54 +0,0 @@
<!-- ---
title: W400-128GSY01
name: W400-128GSY01
model:
description:
id: 14
categoryId: 5
tag: "2.5-inch SATA III"
usage: ["系统启动盘", "游戏加速/存储", "办公/学习扩容"]
series: ["W400 Series"]
image: /images/products/2.5-inch SSD_M.2 SSD/W400-128GSY01/w400-128gsy01.webp
gallery: [
]
summary: 最大传输速度高达520MB/s,可显著缩短启动时间和加载时间!
capacities: ["128GB"]
---


# 产品规格

| 项目 | W400-512G-EB |
| :--------------- | :----------- |
| **型号** | W400-512G-EB |
| **容量** | 512GB |
| **闪存类型** | 3D Nand TLC |
| **接口** | SATA 6Gbps (SATA III) |
| **顺序读取 (最大)** | 520MB/s |

# 产品特征

## 高速传输 & 高速启动

兼容SATA III接口,大幅缩短操作系统和应用程序的加载时间。

## 高耐久铝制外壳

采用轻量化设计,实现高刚性,并通过出色的散热性和耐磨性保持稳定性能。

## 静音 & 低发热设计

无驱动噪音,实现静音操作,并抑制整个系统的温度上升。

## 智能纠错功能

自动纠正数据传输中的错误,确保高可靠性。

## 高兼容性

广泛兼容从桌面PC到超薄笔记本PC的各种设备。

## 抗冲击・省电力

为移动用途也提供安心的设计。
-->

+ 0
- 54
content/products/zh/#031.W400-256GSY01.md Ver fichero

@@ -1,54 +0,0 @@
<!-- ---
title: W400-256GSY01
name: W400-256GSY01
model:
description:
id: 15
categoryId: 5
tag: "2.5-inch SATA III"
usage: ["系统启动盘", "游戏加速/存储", "办公/学习扩容"]
series: ["W400 Series"]
image: /images/products/2.5-inch SSD_M.2 SSD/W400-256GSY01/w400-256gsy01.webp
gallery: [
]
summary: 最大传输速度高达520MB/s,可显著缩短启动时间和加载时间!
capacities: ["256GB"]
---


# 产品规格

| 项目 | W400-512G-EB |
| :--------------- | :----------- |
| **型号** | W400-512G-EB |
| **容量** | 512GB |
| **闪存类型** | 3D Nand TLC |
| **接口** | SATA 6Gbps (SATA III) |
| **顺序读取 (最大)** | 520MB/s |

# 产品特征

## 高速传输 & 高速启动

兼容SATA III接口,大幅缩短操作系统和应用程序的加载时间。

## 高耐久铝制外壳

采用轻量化设计,实现高刚性,并通过出色的散热性和耐磨性保持稳定性能。

## 静音 & 低发热设计

无驱动噪音,实现静音操作,并抑制整个系统的温度上升。

## 智能纠错功能

自动纠正数据传输中的错误,确保高可靠性。

## 高兼容性

广泛兼容从桌面PC到超薄笔记本PC的各种设备。

## 抗冲击・省电力

为移动用途也提供安心的设计。
-->

+ 0
- 54
content/products/zh/#033.W400-1TBSY01.md Ver fichero

@@ -1,54 +0,0 @@
<!-- ---
title: W400-1TBSY01
name: W400-1TBSY01
model:
description:
id: 17
categoryId: 5
tag: "2.5-inch SATA III"
usage: ["系统启动盘", "游戏加速/存储", "办公/学习扩容"]
series: ["W400 Series"]
image: /images/products/2.5-inch SSD_M.2 SSD/W400-1TBSY01/w400-1tbsy01.webp
gallery: [
]
summary: 最大传输速度高达520MB/s,可显著缩短启动时间和加载时间!
capacities: ["1TB"]
---


# 产品规格

| 项目 | W400-512G-EB |
| :--------------- | :----------- |
| **型号** | W400-512G-EB |
| **容量** | 512GB |
| **闪存类型** | 3D Nand TLC |
| **接口** | SATA 6Gbps (SATA III) |
| **顺序读取 (最大)** | 520MB/s |

# 产品特征

## 高速传输 & 高速启动

兼容SATA III接口,大幅缩短操作系统和应用程序的加载时间。

## 高耐久铝制外壳

采用轻量化设计,实现高刚性,并通过出色的散热性和耐磨性保持稳定性能。

## 静音 & 低发热设计

无驱动噪音,实现静音操作,并抑制整个系统的温度上升。

## 智能纠错功能

自动纠正数据传输中的错误,确保高可靠性。

## 高兼容性

广泛兼容从桌面PC到超薄笔记本PC的各种设备。

## 抗冲击・省电力

为移动用途也提供安心的设计。
-->

+ 0
- 54
content/products/zh/#053.E30-2TBTN1.md Ver fichero

@@ -1,54 +0,0 @@
<!-- ---
title: E30-2TBTN1
name: E30-2TBTN1
model: E30-2TBTN1-EB
description:
id: 25
categoryId: 5
tag: "PCIe NVMe M.2"
usage: ["系统启动盘", "游戏加速/存储", "办公/学习扩容"]
series: ["PCIe 3.0 固态硬盘"]
image: /images/products/2.5-inch SSD_M.2 SSD/E30-2TBTN1/e30-2tbtn1.webp
gallery: [
]
summary: 采用3D NAND TLC技术,可实现PC的高速启动,并加速文件及应用程序的运行
capacities: ["2TB"]
---


# 产品规格

| 项目 | E30-256GTN1-EB | E30-512GTN1-EB | E30-1TBTN1-EB |
| :------------------- | :---------------- | :---------------- | :---------------- |
| **型号** | E30-256GTN1-EB | E30-512GTN1-EB | E30-1TBTN1-EB |
| **容量** | 256GB | 512GB | 1TB |
| **外形规格** | M.2 2280 | M.2 2280 | M.2 2280 |
| **连接器** | M.2 (M Key) | M.2 (M Key) | M.2 (M Key) |
| **接口** | NVMe/PCIe Gen3 x4 | NVMe/PCIe Gen3 x4 | NVMe/PCIe Gen3 x4 |
| **闪存类型** | 3D Nand TLC | 3D Nand TLC | 3D Nand TLC |
| **顺序读取 (最大)** | 3000MB/s | 3500MB/s | 3500MB/s |
| **顺序写入 (最大)** | 1200MB/s | 2700MB/s | 3200MB/s |
| **耐久性 (TBW)** | 200TB | 500TB | 900TB |
| **工作温度范围** | 0~70°C | 0~70°C | 0~70°C |
| **存储温度范围** | -45~95°C | -45~95°C | -45~95°C |
| **工作电压** | 3.3V ±5% | 3.3V ±5% | 3.3V ±5% |
| **外形尺寸 (mm)** | 80mm x 22mm x 2.05mm | 80mm x 22mm x 2.05mm | 80mm x 22mm x 2.05mm |

# 产品特征

## 高耐久・高速运行

搭载3D NAND TLC的NVMe PCIe Gen3支持,实现高速且高耐久的数据传输,大幅缩短PC启动和加载时间。

## 紧凑设计

薄型M.2 2280外形规格,兼容台式机、笔记本电脑、小型PC。无需布线,安装简便。

## 完善的数据保护功能

支持LDPC ECC和RAID,强化数据准确性和可靠性。TRIM功能实现高速处理和延长寿命,S.M.A.R.T.可实时监控和管理SSD状态。

## 抗冲击・静音设计

抗冲击和振动能力强,提供静音操作的舒适使用环境。
-->

+ 0
- 46
content/products/zh/#232.DDR3-SODIMM-8GB-1.5V.md Ver fichero

@@ -1,46 +0,0 @@
<!-- ---
title: DDR3-SODIMM-8GB-1.5V
name: DDR3-SODIMM-8GB-1.5V
model:
description:
id: 43
categoryId: 3
usage: ["内存升级/性能提升"]
series: ["DDR3-SODIMM"]
image: /images/products/DDR/DDR3-SODIMM-8GB-1.5V/ddr3-sodimm-8gb-1.5v.webp
gallery: [
]
summary: 易于安装、无需任何电脑技能
capacities: ["8GB"]
---


# 产品规格

| 特性 | 说明 |
| :----------- | :------------------------------------- |
| **制造商** | Hanye |
| **规格** | PC3-12800 (DDR3L-1600) |
| **容量** | 8GB (8GB x 1条) |
| **类型** | 204Pin DDR3 SODIMM |
| **电压** | 1.5V |
| **保修期** | 5年保修 |




# Hanye品牌,值得信赖

所有Hanye产品全部使用专业设备和软件进行严格检测,以确保更高品质。

## 提升笔记本电脑的性能

可以增加额外内存,以加快系统速度并保持其流畅运行。

## 提升速度

内存速度的提升和更多的内存意味着可以在几秒钟内加载应用程序。

## 易于安装、无需任何电脑技能

安装内存无需专业的计算机技能。 -->

+ 1
- 1
content/products/zh/100.SD-HC32GBU1.md Ver fichero

@@ -13,7 +13,7 @@ gallery: [
tag: "SD"
summary: 适用于数码相机、摄像机,读取速度高达100MB/秒
capacities: ["32GB"]
sort: 1
sort: 100
---



+ 1
- 0
content/products/zh/101.SD-XC64GBU3.md Ver fichero

@@ -13,6 +13,7 @@ gallery: [
tag: "SD"
summary: 适用于数码相机、摄像机,读取速度高达100MB/秒
capacities: ["64GB"]
sort: 101
---



+ 1
- 0
content/products/zh/102.SD-XC128GBU3.md Ver fichero

@@ -13,6 +13,7 @@ gallery: [
tag: "SD"
summary: 适用于数码相机、摄像机,读取速度高达100MB/秒
capacities: ["128GB"]
sort: 102
---



+ 1
- 0
content/products/zh/110.UD-032G01A1.md Ver fichero

@@ -22,6 +22,7 @@ gallery: [
]
summary: 推荐用于Nintendo Switch、智能手机、行车记录仪、运动相机等多种设备的microSD卡
capacities: ["32GB"]
sort: 110
---



+ 1
- 0
content/products/zh/111.UD-064G01A1.md Ver fichero

@@ -29,6 +29,7 @@ gallery: [
]
summary: 推荐用于Nintendo Switch、智能手机、行车记录仪、运动相机等多种设备的microSD卡
capacities: ["64GB"]
sort: 111
---



+ 1
- 0
content/products/zh/112.UD-128G01A1.md Ver fichero

@@ -32,6 +32,7 @@ gallery: [
]
summary: 推荐用于Nintendo Switch、智能手机、行车记录仪、运动相机等多种设备的microSD卡
capacities: ["128GB"]
sort: 112
---



+ 1
- 0
content/products/zh/113.UD-256G01A1.md Ver fichero

@@ -31,6 +31,7 @@ gallery: [
]
summary: 推荐用于Nintendo Switch、智能手机、行车记录仪、运动相机等多种设备的microSD卡
capacities: ["256GB"]
sort: 113
---



+ 1
- 0
content/products/zh/114.UD-512G01A1.md Ver fichero

@@ -30,6 +30,7 @@ gallery: [
]
summary: 推荐用于Nintendo Switch、智能手机、行车记录仪、运动相机等多种设备的microSD卡
capacities: ["512GB"]
sort: 114
---



+ 28
- 47
pages/index.vue Ver fichero

@@ -46,31 +46,28 @@
}"
>
<div
class="w-full h-full flex-col justify-center hidden md:flex relative z-10"
class="w-full h-full flex-col justify-center flex gap-2 select-none relative z-10"
>
<div
class="rounded border border-white w-11 h-6 leading-none justify-center flex items-center text-white text-sm font-normal"
class="rounded border border-white w-12 h-8 bg-white/10 backdrop-blur-md leading-none justify-center flex items-center text-white text-sm font-normal"
>
SSD
</div>
<div class="justify-center">
<span class="text-white text-6xl font-normal leading-[78px]">{{
<div class="justify-center flex flex-col gap-2">
<span class="text-white md:text-6xl text-1xl sm:text-2xl font-normal">{{
t("home.carousel.one.title")
}}</span>
<span class="text-white text-6xl font-normal leading-[78px]">{{
<span class="text-white md:text-6xl text-1xl sm:text-2xl font-normal">{{
t("home.carousel.one.description")
}}</span>
<br />
<span class="text-white text-6xl font-normal leading-[78px]">{{
<span class="text-white md:text-6xl text-1xl sm:text-2xl font-normal">{{
t("home.carousel.one.description2")
}}</span
><br />
<span
class="text-cyan-400 text-6xl font-normal leading-[78px]"
>{{ t("home.carousel.one.description3") }}</span
>
}}</span>
<span class="text-cyan-400 md:text-6xl text-1xl sm:text-2xl font-normal">{{
t("home.carousel.one.description3")
}}</span>
</div>
<div class="flex flex-col gap-2 mt-4">
<div class="md:flex hidden flex-col gap-2 mt-4">
<div
class="flex items-center gap-2 text-stone-50 text-xl font-normal"
>
@@ -85,7 +82,7 @@
</div>
</div>
<div
class="w-36 h-14 mt-12 flex items-center justify-center bg-[#35F1FF] rounded-lg hover:bg-[#35F1FF]/80 transition-colors duration-300"
class="md:w-36 w-28 md:h-14 h-10 md:mt-12 mt-2 flex items-center justify-center bg-[#35F1FF] rounded-lg hover:bg-[#35F1FF]/80 transition-colors duration-300"
>
<nuxt-link
:to="`${homepagePath}/products/HE80-2TNLHS`"
@@ -178,7 +175,7 @@
<div class="max-w-screen-2xl mx-auto relative">
<!-- 企业产品 -->
<div
class="flex w-full relative mb-10 xl:mb-40 gap-6 flex-col xl:flex-row"
class="flex w-full relative mb-10 xl:mb-40 gap-10 flex-col xl:flex-row"
>
<div
class="select-none relative w-full xl:w-[65%] h-[280px] md:h-[320px] xl:h-[520px] animate-gradient-bg [background:linear-gradient(180deg,#444B55_0%,#98A3B4_95%)] from-zinc-900 to-zinc-800"
@@ -189,19 +186,16 @@
class="max-h-full pl-0 md:pl-4 pt-0 md:pt-4 relative z-10"
/>
<span
class="absolute hidden xl:block z-0 top-[35%] left-[60%] translate-y-[-50%] translate-x-[-50%] opacity-5 text-white text-[160px] font-bold select-none"
>Hanye</span
class="text-transparent bg-clip-text bg-gradient-to-r from-[rgba(255,255,255,0.05)] to-[rgba(255,255,255,0.08)] absolute hidden xl:block z-0 top-[35%] left-[62%] translate-y-[-50%] translate-x-[-50%] text-[170px] font-bold select-none"
>Business</span
>

<div
class="w-full absolute xl:hidden top-0 left-0 right-0 bottom-0 z-10 flex flex-col justify-center items-end p-4 md:p-8"
>
<div
class="opacity-10 text-white text-4xl md:text-7xl font-bold mb-2 select-none"
class="text-white text-4xl md:text-7xl font-bold mb-2 select-none"
>
Business
</div>
<div class="justify-center text-white text-4xl font-medium mb-4">
{{ t("home.business.title") }}
</div>
<div class="justify-center text-white text-xl font-normal mb-8">
@@ -220,12 +214,7 @@
</div>
<div class="relative hidden xl:flex flex-1 flex-col gap-10">
<div class="w-full">
<div
class="opacity-20 text-white text-7xl font-bold mb-2 select-none"
>
Business
</div>
<div class="justify-center text-white text-4xl font-medium mb-4">
<div class="text-white text-6xl mb-4 mt-4 select-none">
{{ t("home.business.title") }}
</div>
<div class="justify-center text-white text-xl font-normal mb-8">
@@ -282,11 +271,8 @@
>
<div class="w-full">
<div
class="opacity-20 justify-center text-white text-7xl font-bold mb-2 select-none"
class="justify-center text-white text-6xl whitespace-nowrap mb-4 mt-20 select-none"
>
Personal
</div>
<div class="justify-center text-white text-4xl font-medium mb-4">
{{ t("home.personal.title") }}
</div>
<div class="justify-center text-white text-xl font-normal mb-8">
@@ -313,8 +299,8 @@
class="pt-0 md:pt-20 max-h-full relative z-10"
/>
<span
class="absolute hidden xl:block z-0 top-[25%] left-[35%] translate-y-[-50%] translate-x-[-50%] opacity-5 text-white text-[160px] font-bold select-none"
>Hanye</span
class="absolute text-transparent bg-clip-text bg-gradient-to-r from-[rgba(255,255,255,0.08)] to-[rgba(255,255,255,0.05)] hidden xl:block z-0 top-[25%] left-[35%] translate-y-[-50%] translate-x-[-50%] text-[160px] font-bold select-none"
>Personal</span
>

<div
@@ -322,12 +308,7 @@
>
<div class="w-full">
<div
class="opacity-10 justify-center text-white text-4xl md:text-7xl font-bold mb-2 select-none"
>
Personal
</div>
<div
class="justify-center text-white text-4xl font-medium mb-4"
class="justify-center text-white text-4xl md:text-7xl font-bold mb-2 select-none"
>
{{ t("home.personal.title") }}
</div>
@@ -348,7 +329,7 @@
</div>

<div
class="bg-zinc-900/60 backdrop-blur-[120px] static left-0 bottom-[-30%] xl:absolute z-2"
class="bg-zinc-900/60 backdrop-blur-[120px] static left-0 bottom-[-32%] xl:absolute z-2"
>
<div class="w-full h-full grid grid-cols-2 lg:grid-cols-3">
<nuxt-link
@@ -548,7 +529,7 @@
<!-- 核心展示 -->
<section class="max-w-full mb-12 md:mb-32 xl:px-8 lg:px-6 md:px-4 px-4">
<div
class="max-w-screen-2xl mx-auto grid grid-cols-1 lg:grid-cols-3 md:grid-cols-2 sm:grid-cols-1 gap-4"
class="max-w-screen-2xl mx-auto grid grid-cols-1 lg:grid-cols-3 md:grid-cols-2 sm:grid-cols-2 gap-4"
>
<div class="inline-flex justify-start items-center gap-5">
<div
@@ -657,7 +638,7 @@
prevEl: '.swiper-button-prev-3',
nextEl: '.swiper-button-next-3',
}"
class="h-[360px] sm:h-[360px] md:h-[480px] lg:h-[720px] max-w-full"
class="h-auto sm:h-[360px] md:h-[480px] lg:h-[720px] max-w-full"
>
<SwiperSlide class="!max-w-screen-2xl !w-full">
<div
@@ -670,7 +651,7 @@
}"
>
<div
class="w-full lg:w-[50%] h-full md:h-auto bg-white/5 rounded-0 md:rounded-2xl backdrop-blur-[50px] px-4 py-8 md:py-12 md:px-8 flex flex-col gap-8 border border-white/10"
class="w-[100%] md:w-[60%] h-[100%] md:h-auto bg-white/5 rounded-0 md:rounded-2xl backdrop-blur-[50px] px-4 py-8 md:py-12 md:px-8 flex flex-col gap-8 border border-white/10"
>
<div
class="opacity-90 justify-start text-white text-2xl font-normal md:text-4xl"
@@ -700,7 +681,7 @@
class="absolute top-0 left-0 w-full h-full flex flex-col gap-6 items-center justify-center z-10"
>
<h1
class="text-center justify-start text-white font-normal text-xl sm:text-2xl md:text-3xl px-2"
class="text-center justify-start text-white font-normal text-xl sm:text-xl md:text-3xl px-4 sm:px-2"
>
{{ t("products.consultation") }}
</h1>
@@ -708,7 +689,7 @@
:to="`${homepagePath}/contact`"
class="w-32 h-10 md:w-40 md:h-11 bg-zinc-300/10 rounded-lg outline outline-1 flex items-center justify-center gap-2 outline-white/20 backdrop-blur-[10px] cursor-pointer hover:bg-zinc-300/20 transition-colors duration-200"
>
<span class="text-xs md:text-sm font-normal">{{
<span class="text-base font-normal">{{
t("products.consultation_button")
}}</span>
<i class="icon-arrow-right text-sm font-normal"></i>
@@ -1243,7 +1224,7 @@ useHead({
}
50% {
background-position: 100% 50%;
opacity: 0.9;
opacity: 0.85;
}
100% {
background-position: 0% 50%;

+ 0
- 2
prerenderRoutes.json Ver fichero

@@ -151,8 +151,6 @@
"/en/products/230.DDR3-UDIMM-8GB-1.5V",
"/en/products/231.DDR3-SODIMM-8GB-1.35V",
"/en/products/CR-201BK",
"/en/products/DDR3-SODIMM-8GB-1.35V",
"/en/products/DDR3-UDIMM-8GB-1.5V",
"/en/products/HSE-M20GRC01",
"/en/products/HSE-M40GRC01",
"/en/products/HSE-M4IN1GRC01",

+ 1
- 1
public/data/categories-ja.json Ver fichero

@@ -51,7 +51,7 @@
"id": "5",
"title": "企業向SSD",
"description": "データセンターやサーバー向けに設計され、要求の厳しいワークロードに対応し、持続的な高パフォーマンスと高信頼性を提供します。",
"image": "/images/categories/hdd-enclosure.webp",
"image": "/images/categories/Enterprise-grade SSD.webp",
"summary": "複数のインターフェースをサポートし、便利なストレージソリューションを提供する外付けケース",
"capacities": [
"究極のパフォーマンス:ランダム読み書きを最適化し、アプリケーション応答とデータ処理を高速化。",

+ 2
- 48
public/data/products-en.json Ver fichero

@@ -374,11 +374,7 @@
"series": [
"Q60 Series"
],
"gallery": [
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-1.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-2.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-3.webp"
],
"gallery": [],
"capacities": [
"1TB"
]
@@ -462,11 +458,7 @@
"series": [
"Q60 Series"
],
"gallery": [
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-1.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-2.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-3.webp"
],
"gallery": [],
"capacities": [
"2TB"
]
@@ -1380,44 +1372,6 @@
""
]
},
{
"id": "DDR3-SODIMM-8GB-1.35V",
"title": "DDR3-SODIMM-8GB-1.35V",
"name": "DDR3-SODIMM-8GB-1.35V",
"usage": [
"Memory Upgrade/Performance Enhancement"
],
"category": 3,
"image": "/images/products/DDR/DDR3-SODIMM-8GB-1.35V/ddr3-sodimm-8gb-1.35v.webp",
"description": "",
"summary": "Easy to install, no computer skills required",
"series": [
"DDR3"
],
"gallery": [],
"capacities": [
"8GB"
]
},
{
"id": "DDR3-UDIMM-8GB-1.5V",
"title": "DDR3-UDIMM-8GB-1.5V",
"name": "DDR3-UDIMM-8GB-1.5V",
"usage": [
"Memory Upgrade/Performance Enhancement"
],
"category": 3,
"image": "/images/products/DDR/DDR3-UDIMM-8GB-1.5V/ddr3-udimm-8gb-1.5v.webp",
"description": "",
"summary": "Easy to install, no computer skills required",
"series": [
"DDR3"
],
"gallery": [],
"capacities": [
"8GB"
]
},
{
"id": "HSE-M20GRC01",
"title": "HSE-M20GRC01",

+ 2
- 28
public/data/products-ja.json Ver fichero

@@ -374,20 +374,7 @@
"series": [
"Q60 Series"
],
"gallery": [
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-1.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-2.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-3.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-4.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-5.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-6.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-7.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-8.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-9.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-10.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-11.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-12.webp"
],
"gallery": [],
"capacities": [
"1TB"
]
@@ -471,20 +458,7 @@
"series": [
"Q60 Series"
],
"gallery": [
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-1.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-2.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-3.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-4.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-5.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-6.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-7.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-8.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-9.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-10.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-11.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-12.webp"
],
"gallery": [],
"capacities": [
"2TB"
]

+ 2
- 10
public/data/products-zh.json Ver fichero

@@ -374,11 +374,7 @@
"series": [
"Q60 Series"
],
"gallery": [
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-1.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-2.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3-3.webp"
],
"gallery": [],
"capacities": [
"1TB"
]
@@ -462,11 +458,7 @@
"series": [
"Q60 Series"
],
"gallery": [
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-1.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-2.webp",
"/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3-3.webp"
],
"gallery": [],
"capacities": [
"2TB"
]

Cargando…
Cancelar
Guardar