- 新增多个产品文档,涵盖不同型号和规格,提升产品信息的完整性。 - 新增用途文档,详细描述产品的应用场景,增强用户理解。 - 更新content.config.ts,调整内容结构以支持新文档。 - 删除不再使用的API接口,简化项目结构,提升维护性。master
@@ -1,18 +1,78 @@ | |||
import { defineCollection, z } from '@nuxt/content' | |||
// 定义 Category 集合 | |||
const categoryCollection = defineCollection({ | |||
type: 'page', | |||
schema: z.object({ | |||
title: z.string(), | |||
description: z.string().optional(), | |||
id: z.string(), | |||
image: z.string(), | |||
summary: z.string(), | |||
capacities: z.array(z.string()), | |||
sort: z.number(), | |||
}) | |||
}) | |||
// 定义 Product 集合 | |||
const productCollection = defineCollection({ | |||
type: 'page', | |||
schema: z.object({ | |||
title: z.string(), | |||
name: z.string(), | |||
description: z.string().optional(), | |||
id: z.string(), | |||
categoryId: z.string(), // 关联类别的ID | |||
usage: z.array(z.string()), | |||
series: z.array(z.string()), | |||
image: z.string(), | |||
gallery: z.array(z.string()), | |||
summary: z.string(), | |||
capacities: z.array(z.string()), | |||
sort: z.number(), | |||
body: z.object({ | |||
value: z.string() | |||
}) | |||
}) | |||
}) | |||
// 定义 Usage 集合 | |||
const usageCollection = defineCollection({ | |||
type: 'page', | |||
schema: z.object({ | |||
title: z.string(), | |||
description: z.string(), | |||
id: z.string(), | |||
category: z.string(), | |||
products: z.array(z.string()), | |||
summary: z.string(), | |||
sort: z.number() | |||
}) | |||
}) | |||
// 定义 FAQ 集合 | |||
const faqCollection = defineCollection({ | |||
type: 'page', | |||
schema: z.object({ | |||
title: z.string(), | |||
description: z.string().optional(), | |||
id: z.number(), | |||
id: z.string(), | |||
category: z.string(), | |||
question: z.string(), | |||
answer: z.string() | |||
answer: z.string(), | |||
sort: z.number() | |||
}) | |||
}) | |||
// 定义默认集合 | |||
const defaultCollection = defineCollection({ | |||
type: 'page' | |||
}) | |||
export default { | |||
faq: faqCollection | |||
categories: categoryCollection, | |||
products: productCollection, | |||
usages: usageCollection, | |||
faq: faqCollection, | |||
content: defaultCollection | |||
} |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: SD Cards | |||
description: SD cards for cameras, camcorders, and other devices | |||
id: 1 | |||
image: /images/categories/sd-card.jpg | |||
summary: High-speed, high-capacity SD cards for professional photography and videography | |||
capacities: ["32GB", "64GB", "128GB", "256GB", "512GB", "1TB"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: microSD Cards | |||
description: microSD cards for smartphones, tablets, action cameras, and other mobile devices | |||
id: 2 | |||
image: /images/categories/microsd-card.jpg | |||
summary: Compact microSD cards providing additional storage for mobile devices | |||
capacities: ["32GB", "64GB", "128GB", "256GB", "512GB", "1TB"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: 2.5-inch SSD & M.2 SSD | |||
description: Solid state drives for computers, game consoles, and other devices | |||
id: 3 | |||
image: /images/categories/ssd.jpg | |||
summary: High-speed, reliable SSDs providing excellent performance and storage capacity | |||
capacities: ["256GB", "512GB", "1TB", "2TB", "4TB"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: Memory Modules | |||
description: Memory modules for computers, servers, and other devices | |||
id: 4 | |||
image: /images/categories/ram.jpg | |||
summary: High-performance memory modules providing fast data access and processing capabilities | |||
capacities: ["8GB", "16GB", "32GB", "64GB"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: Card Readers | |||
description: Devices for reading various types of memory cards | |||
id: 5 | |||
image: /images/categories/card-reader.jpg | |||
summary: Card readers supporting multiple memory card formats, providing fast data transfer | |||
capacities: ["USB 3.0", "USB 3.1", "USB-C"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: External Enclosures | |||
description: Enclosures for external hard drives and SSDs | |||
id: 6 | |||
image: /images/categories/enclosure.jpg | |||
summary: External enclosures providing convenient storage expansion and data backup solutions | |||
capacities: ["2.5-inch", "3.5-inch", "M.2"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: SDカード | |||
description: カメラ、ビデオカメラなどのデバイス用のSDカード | |||
id: 1 | |||
image: /images/categories/sd-card.jpg | |||
summary: プロフェッショナルな写真撮影やビデオ撮影に適した高速・大容量のSDカード | |||
capacities: ["32GB", "64GB", "128GB", "256GB", "512GB", "1TB"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: microSDカード | |||
description: スマートフォン、タブレット、アクションカメラなどのデバイス用のmicroSDカード | |||
id: 2 | |||
image: /images/categories/microsd-card.jpg | |||
summary: モバイルデバイスに追加のストレージ容量を提供するコンパクトなmicroSDカード | |||
capacities: ["32GB", "64GB", "128GB", "256GB", "512GB", "1TB"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: 2.5インチ SSD & M.2 SSD | |||
description: パソコン、ゲーム機などのデバイス用のソリッドステートドライブ | |||
id: 3 | |||
image: /images/categories/ssd.jpg | |||
summary: 優れたパフォーマンスとストレージ容量を提供する高速・信頼性の高いSSD | |||
capacities: ["256GB", "512GB", "1TB", "2TB", "4TB"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: メモリ | |||
description: パソコン、サーバーなどのデバイス用のメモリモジュール | |||
id: 4 | |||
image: /images/categories/ram.jpg | |||
summary: 高速なデータアクセスと処理能力を提供する高性能メモリ | |||
capacities: ["8GB", "16GB", "32GB", "64GB"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: カードリーダー | |||
description: 様々なメモリカードを読み取るためのデバイス | |||
id: 5 | |||
image: /images/categories/card-reader.jpg | |||
summary: 複数のメモリカードフォーマットをサポートし、高速なデータ転送を提供するカードリーダー | |||
capacities: ["USB 3.0", "USB 3.1", "USB-C"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: 外付けケース | |||
description: 内蔵ハードディスクを外付けストレージデバイスに変換するためのデバイス | |||
id: 6 | |||
image: /images/categories/hdd-enclosure.jpg | |||
summary: 複数のインターフェースをサポートし、便利なストレージソリューションを提供する外付けケース | |||
capacities: ["USB 3.0", "USB 3.1", "USB-C", "Thunderbolt"] | |||
--- |
@@ -0,0 +1,37 @@ | |||
--- | |||
title: SD存储卡 | |||
description: 适用于相机、摄像机等设备的SD存储卡 | |||
id: "1" | |||
image: /images/categories/sd-card.jpg | |||
summary: 高速、大容量的SD存储卡,适用于专业摄影和摄像 | |||
capacities: ["32GB", "64GB", "128GB", "256GB", "512GB", "1TB"] | |||
sort: 1 | |||
--- | |||
# SD存储卡 | |||
SD存储卡是一种广泛应用于数码相机、摄像机、手机等设备的存储介质。我们提供从32GB到1TB的多种容量选择,满足不同用户的存储需求。 | |||
## 产品特点 | |||
- 高速读写性能 | |||
- 多种容量选择 | |||
- 可靠的数据保护 | |||
- 广泛的设备兼容性 | |||
- 专业级品质保证 | |||
## 应用场景 | |||
- 专业摄影 | |||
- 视频录制 | |||
- 移动设备扩展 | |||
- 数据存储 | |||
- 内容创作 | |||
## 技术优势 | |||
- 支持UHS-I/II | |||
- 支持多种速度等级 | |||
- 先进的错误检测和纠正 | |||
- 防水防尘设计 | |||
- 温度适应性强 |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: microSD存储卡 | |||
description: 适用于手机、平板、运动相机等设备的microSD存储卡 | |||
id: 2 | |||
image: /images/categories/microsd-card.jpg | |||
summary: 小巧便携的microSD存储卡,为移动设备提供额外存储空间 | |||
capacities: ["32GB", "64GB", "128GB", "256GB", "512GB", "1TB"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: 2.5英寸 SSD & M.2 SSD | |||
description: 适用于电脑、游戏主机等设备的固态硬盘 | |||
id: 3 | |||
image: /images/categories/ssd.jpg | |||
summary: 高速、可靠的固态硬盘,提供卓越的性能和存储容量 | |||
capacities: ["256GB", "512GB", "1TB", "2TB", "4TB"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: 内存条 | |||
description: 适用于电脑、服务器等设备的内存条 | |||
id: 4 | |||
image: /images/categories/ram.jpg | |||
summary: 高性能内存条,提供快速的数据访问和处理能力 | |||
capacities: ["8GB", "16GB", "32GB", "64GB"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: 读卡器 | |||
description: 用于读取各种存储卡的设备 | |||
id: 5 | |||
image: /images/categories/card-reader.jpg | |||
summary: 支持多种存储卡格式的读卡器,提供快速的数据传输 | |||
capacities: ["USB 3.0", "USB 3.1", "USB-C"] | |||
--- |
@@ -0,0 +1,8 @@ | |||
--- | |||
title: 外接硬盘盒 | |||
description: 用于将内部硬盘转换为外接存储设备的设备 | |||
id: 6 | |||
image: /images/categories/hdd-enclosure.jpg | |||
summary: 支持多种接口的外接硬盘盒,提供便捷的存储解决方案 | |||
capacities: ["USB 3.0", "USB 3.1", "USB-C", "Thunderbolt"] | |||
--- |
@@ -1,8 +1,16 @@ | |||
--- | |||
id: 5 | |||
title: 如何获取技术支持? | |||
description: 了解如何获取我们的技术支持服务 | |||
category: 技术支持 | |||
question: 如何获取技术支持? | |||
answer: 您可以通过电子邮件、电话或在线聊天等多种方式获取技术支持。在工作时间内,我们将提供即时响应。 | |||
sort: 1 | |||
--- | |||
您可以通过电子邮件、电话或在线聊天等多种方式获取技术支持。在工作时间内,我们将提供即时响应。 | |||
# 如何获取技术支持? | |||
您可以通过以下方式获取技术支持: | |||
1. 电子邮件:support@example.com | |||
2. 电话:400-123-4567 | |||
3. 在线聊天:工作日 9:00-18:00 | |||
在工作时间内,我们将提供即时响应。对于非工作时间提交的问题,我们会在下一个工作日尽快回复。 |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: CR-201BK | |||
name: CR-201BK | |||
description: USB 3.0 Multi-Card Reader, Supporting SD/microSD Cards | |||
id: 45 | |||
categoryId: 5 | |||
usage: ["Mobile Data Transfer/Backup"] | |||
series: ["Card Reader"] | |||
image: /images/products/cr-201bk.jpg | |||
gallery: [ | |||
"/images/products/cr-201bk-1.jpg", | |||
"/images/products/cr-201bk-2.jpg", | |||
"/images/products/cr-201bk-3.jpg" | |||
] | |||
summary: High-speed USB 3.0 card reader supporting multiple memory card formats, portable and easy to use | |||
capacities: ["N/A"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: DDR3-SODIMM 8GB 1.35V | |||
name: DDR3-SODIMM 8GB 1.35V | |||
description: DDR3 Laptop Memory, Low Voltage Version | |||
id: 42 | |||
categoryId: 4 | |||
usage: ["Memory Upgrade/Performance Enhancement"] | |||
series: ["DDR3"] | |||
image: /images/products/ddr3-sodimm-8gb-1.35v.jpg | |||
gallery: [ | |||
"/images/products/ddr3-sodimm-8gb-1.35v-1.jpg", | |||
"/images/products/ddr3-sodimm-8gb-1.35v-2.jpg", | |||
"/images/products/ddr3-sodimm-8gb-1.35v-3.jpg" | |||
] | |||
summary: High-performance DDR3 laptop memory providing stable and reliable system performance | |||
capacities: ["8GB"] | |||
--- |
@@ -0,0 +1 @@ | |||
@@ -0,0 +1,17 @@ | |||
--- | |||
title: DDR3-UDIMM 8GB 1.5V | |||
name: DDR3-UDIMM 8GB 1.5V | |||
description: DDR3 Desktop Memory, Standard Voltage Version | |||
id: 44 | |||
categoryId: 4 | |||
usage: ["Memory Upgrade/Performance Enhancement"] | |||
series: ["DDR3"] | |||
image: /images/products/ddr3-udimm-8gb-1.5v.jpg | |||
gallery: [ | |||
"/images/products/ddr3-udimm-8gb-1.5v-1.jpg", | |||
"/images/products/ddr3-udimm-8gb-1.5v-2.jpg", | |||
"/images/products/ddr3-udimm-8gb-1.5v-3.jpg" | |||
] | |||
summary: High-performance DDR3 desktop memory providing stable and reliable system performance | |||
capacities: ["8GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: E30-1TBTN1 | |||
name: E30-1TBTN1 | |||
description: High-performance PCIe NVMe M.2 2280 SSD for laptops and desktop computers | |||
id: 24 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["E30 Series"] | |||
image: /images/products/e30-1tbtn1.jpg | |||
gallery: [ | |||
"/images/products/e30-1tbtn1-1.jpg", | |||
"/images/products/e30-1tbtn1-2.jpg", | |||
"/images/products/e30-1tbtn1-3.jpg" | |||
] | |||
summary: High-speed, reliable PCIe NVMe M.2 2280 SSD providing excellent performance and storage capacity | |||
capacities: ["1TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: E30-256GTN1 | |||
name: E30-256GTN1 | |||
description: High-performance PCIe NVMe M.2 2280 SSD for laptops and desktop computers | |||
id: 22 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["E30 Series"] | |||
image: /images/products/e30-256gtn1.jpg | |||
gallery: [ | |||
"/images/products/e30-256gtn1-1.jpg", | |||
"/images/products/e30-256gtn1-2.jpg", | |||
"/images/products/e30-256gtn1-3.jpg" | |||
] | |||
summary: High-speed, reliable PCIe NVMe M.2 2280 SSD providing excellent performance and storage capacity | |||
capacities: ["256GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: E30-2TBTN1 | |||
name: E30-2TBTN1 | |||
description: High-performance PCIe NVMe M.2 2280 SSD for laptops and desktop computers | |||
id: 25 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["E30 Series"] | |||
image: /images/products/e30-2tbtn1.jpg | |||
gallery: [ | |||
"/images/products/e30-2tbtn1-1.jpg", | |||
"/images/products/e30-2tbtn1-2.jpg", | |||
"/images/products/e30-2tbtn1-3.jpg" | |||
] | |||
summary: High-speed, reliable PCIe NVMe M.2 2280 SSD providing excellent performance and storage capacity | |||
capacities: ["2TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: E30-512GTN1 | |||
name: E30-512GTN1 | |||
description: High-performance PCIe NVMe M.2 2280 SSD for laptops and desktop computers | |||
id: 23 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["E30 Series"] | |||
image: /images/products/e30-512gtn1.jpg | |||
gallery: [ | |||
"/images/products/e30-512gtn1-1.jpg", | |||
"/images/products/e30-512gtn1-2.jpg", | |||
"/images/products/e30-512gtn1-3.jpg" | |||
] | |||
summary: High-speed, reliable PCIe NVMe M.2 2280 SSD providing excellent performance and storage capacity | |||
capacities: ["512GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HE70-1TBNHS1 | |||
name: HE70-1TBNHS1 | |||
description: High-performance PCIe NVMe M.2 2280 SSD for laptops and desktop computers | |||
id: 26 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["HE70 Series"] | |||
image: /images/products/he70-1tbnhs1.jpg | |||
gallery: [ | |||
"/images/products/he70-1tbnhs1-1.jpg", | |||
"/images/products/he70-1tbnhs1-2.jpg", | |||
"/images/products/he70-1tbnhs1-3.jpg" | |||
] | |||
summary: High-speed, reliable PCIe NVMe M.2 2280 SSD providing excellent performance and storage capacity | |||
capacities: ["1TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HE70-2TBNHS1 | |||
name: HE70-2TBNHS1 | |||
description: High-performance PCIe NVMe M.2 2280 SSD for laptops and desktop computers | |||
id: 27 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["HE70 Series"] | |||
image: /images/products/he70-2tbnhs1.jpg | |||
gallery: [ | |||
"/images/products/he70-2tbnhs1-1.jpg", | |||
"/images/products/he70-2tbnhs1-2.jpg", | |||
"/images/products/he70-2tbnhs1-3.jpg" | |||
] | |||
summary: High-speed, reliable PCIe NVMe M.2 2280 SSD providing excellent performance and storage capacity | |||
capacities: ["2TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HE70-4TBNHS1 | |||
name: HE70-4TBNHS1 | |||
description: High-performance PCIe NVMe M.2 2280 SSD for laptops and desktop computers | |||
id: 28 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["HE70 Series"] | |||
image: /images/products/he70-4tbnhs1.jpg | |||
gallery: [ | |||
"/images/products/he70-4tbnhs1-1.jpg", | |||
"/images/products/he70-4tbnhs1-2.jpg", | |||
"/images/products/he70-4tbnhs1-3.jpg" | |||
] | |||
summary: High-speed, reliable PCIe NVMe M.2 2280 SSD providing excellent performance and storage capacity | |||
capacities: ["4TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HE71-2TBNDGH | |||
name: HE71-2TBNDGH | |||
description: High-performance PCIe NVMe M.2 2280 SSD for laptops and desktop computers | |||
id: 29 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["HE71 Series"] | |||
image: /images/products/he71-2tbndgh.jpg | |||
gallery: [ | |||
"/images/products/he71-2tbndgh-1.jpg", | |||
"/images/products/he71-2tbndgh-2.jpg", | |||
"/images/products/he71-2tbndgh-3.jpg" | |||
] | |||
summary: High-speed, reliable PCIe NVMe M.2 2280 SSD providing excellent performance and storage capacity | |||
capacities: ["2TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HE80-2TGHS | |||
name: HE80-2TGHS | |||
description: High-performance PCIe NVMe M.2 2280 SSD for laptops and desktop computers | |||
id: 30 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["HE80 Series"] | |||
image: /images/products/he80-2tghs.jpg | |||
gallery: [ | |||
"/images/products/he80-2tghs-1.jpg", | |||
"/images/products/he80-2tghs-2.jpg", | |||
"/images/products/he80-2tghs-3.jpg" | |||
] | |||
summary: High-speed, reliable PCIe NVMe M.2 2280 SSD providing excellent performance and storage capacity | |||
capacities: ["2TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HE80-2TNLHS | |||
name: HE80-2TNLHS | |||
description: High-performance PCIe NVMe M.2 2280 SSD for laptops and desktop computers | |||
id: 31 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["HE80 Series"] | |||
image: /images/products/he80-2tnlhs.jpg | |||
gallery: [ | |||
"/images/products/he80-2tnlhs-1.jpg", | |||
"/images/products/he80-2tnlhs-2.jpg", | |||
"/images/products/he80-2tnlhs-3.jpg" | |||
] | |||
summary: High-speed, reliable PCIe NVMe M.2 2280 SSD providing excellent performance and storage capacity | |||
capacities: ["2TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HSE-M20GRC01 | |||
name: HSE-M20GRC01 | |||
description: M.2 SSD Enclosure, Supporting SATA Protocol | |||
id: 48 | |||
categoryId: 6 | |||
usage: ["Mobile Data Transfer/Backup"] | |||
series: ["M.2 SSD Enclosure"] | |||
image: /images/products/hse-m20grc01.jpg | |||
gallery: [ | |||
"/images/products/hse-m20grc01-1.jpg", | |||
"/images/products/hse-m20grc01-2.jpg", | |||
"/images/products/hse-m20grc01-3.jpg" | |||
] | |||
summary: High-speed USB 3.0 M.2 SATA SSD enclosure, lightweight and portable, supporting plug and play | |||
capacities: ["N/A"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HSE-M40GRC01 | |||
name: HSE-M40GRC01 | |||
description: M.2 SSD Enclosure, Supporting NVMe Protocol | |||
id: 49 | |||
categoryId: 6 | |||
usage: ["Mobile Data Transfer/Backup"] | |||
series: ["M.2 SSD Enclosure"] | |||
image: /images/products/hse-m40grc01.jpg | |||
gallery: [ | |||
"/images/products/hse-m40grc01-1.jpg", | |||
"/images/products/hse-m40grc01-2.jpg", | |||
"/images/products/hse-m40grc01-3.jpg" | |||
] | |||
summary: High-speed USB 3.1 M.2 NVMe SSD enclosure, lightweight and portable, supporting plug and play | |||
capacities: ["N/A"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HSE-M4IN1GRC01 | |||
name: HSE-M4IN1GRC01 | |||
description: M.2 SSD Enclosure, Supporting SATA/NVMe Protocol, 4-in-1 Design | |||
id: 50 | |||
categoryId: 6 | |||
usage: ["Mobile Data Transfer/Backup"] | |||
series: ["M.2 SSD Enclosure"] | |||
image: /images/products/hse-m4in1grc01.jpg | |||
gallery: [ | |||
"/images/products/hse-m4in1grc01-1.jpg", | |||
"/images/products/hse-m4in1grc01-2.jpg", | |||
"/images/products/hse-m4in1grc01-3.jpg" | |||
] | |||
summary: High-speed USB 3.1 M.2 SSD enclosure supporting multiple interfaces, ideal for professional users | |||
capacities: ["N/A"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HSE-M6IN1GRC01 | |||
name: HSE-M6IN1GRC01 | |||
description: M.2 SSD Enclosure, Supporting SATA/NVMe/mSATA Protocol, 6-in-1 Design | |||
id: 51 | |||
categoryId: 6 | |||
usage: ["Mobile Data Transfer/Backup"] | |||
series: ["M.2 SSD Enclosure"] | |||
image: /images/products/hse-m6in1grc01.jpg | |||
gallery: [ | |||
"/images/products/hse-m6in1grc01-1.jpg", | |||
"/images/products/hse-m6in1grc01-2.jpg", | |||
"/images/products/hse-m6in1grc01-3.jpg" | |||
] | |||
summary: High-speed USB 3.1 M.2/mSATA SSD enclosure supporting multiple interfaces, ideal for professional users | |||
capacities: ["N/A"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: M200-SC256G | |||
name: M200-SC256G | |||
description: High-performance M.2 2280 SATA III SSD for laptops and desktop computers | |||
id: 32 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["M200 Series"] | |||
image: /images/products/m200-sc256g.jpg | |||
gallery: [ | |||
"/images/products/m200-sc256g-1.jpg", | |||
"/images/products/m200-sc256g-2.jpg", | |||
"/images/products/m200-sc256g-3.jpg" | |||
] | |||
summary: High-speed, reliable M.2 2280 SATA III SSD providing excellent performance and storage capacity | |||
capacities: ["256GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: M200-SC512G | |||
name: M200-SC512G | |||
description: High-performance M.2 2280 SATA III SSD for laptops and desktop computers | |||
id: 33 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["M200 Series"] | |||
image: /images/products/m200-sc512g.jpg | |||
gallery: [ | |||
"/images/products/m200-sc512g-1.jpg", | |||
"/images/products/m200-sc512g-2.jpg", | |||
"/images/products/m200-sc512g-3.jpg" | |||
] | |||
summary: High-speed, reliable M.2 2280 SATA III SSD providing excellent performance and storage capacity | |||
capacities: ["512GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: ME70-1TA01 | |||
name: ME70-1TA01 | |||
description: High-performance PCIe NVMe M.2 SSD for laptops and desktop computers | |||
id: 20 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["ME70 Series"] | |||
image: /images/products/me70-1ta01.jpg | |||
gallery: [ | |||
"/images/products/me70-1ta01-1.jpg", | |||
"/images/products/me70-1ta01-2.jpg", | |||
"/images/products/me70-1ta01-3.jpg" | |||
] | |||
summary: High-speed, reliable PCIe NVMe M.2 SSD providing excellent performance and storage capacity | |||
capacities: ["1TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: ME70-2TA01 | |||
name: ME70-2TA01 | |||
description: High-performance PCIe NVMe M.2 SSD for laptops and desktop computers | |||
id: 21 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["ME70 Series"] | |||
image: /images/products/me70-2ta01.jpg | |||
gallery: [ | |||
"/images/products/me70-2ta01-1.jpg", | |||
"/images/products/me70-2ta01-2.jpg", | |||
"/images/products/me70-2ta01-3.jpg" | |||
] | |||
summary: High-speed, reliable PCIe NVMe M.2 SSD providing excellent performance and storage capacity | |||
capacities: ["2TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: MN50-1000GA01 | |||
name: MN50-1000GA01 | |||
description: High-performance PCIe NVMe M.2 SSD for laptops and desktop computers | |||
id: 19 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["MN50 Series"] | |||
image: /images/products/mn50-1000ga01.jpg | |||
gallery: [ | |||
"/images/products/mn50-1000ga01-1.jpg", | |||
"/images/products/mn50-1000ga01-2.jpg", | |||
"/images/products/mn50-1000ga01-3.jpg" | |||
] | |||
summary: High-speed, reliable PCIe NVMe M.2 SSD providing excellent performance and storage capacity | |||
capacities: ["1TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: MN50-512GA01 | |||
name: MN50-512GA01 | |||
description: High-performance PCIe NVMe M.2 SSD for laptops and desktop computers | |||
id: 18 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["MN50 Series"] | |||
image: /images/products/mn50-512ga01.jpg | |||
gallery: [ | |||
"/images/products/mn50-512ga01-1.jpg", | |||
"/images/products/mn50-512ga01-2.jpg", | |||
"/images/products/mn50-512ga01-3.jpg" | |||
] | |||
summary: High-speed, reliable PCIe NVMe M.2 SSD providing excellent performance and storage capacity | |||
capacities: ["512GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: N400-128GSY03 | |||
name: N400-128GSY03 | |||
description: High-performance 2.5-inch SATA III SSD for laptops and desktop computers | |||
id: 10 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["N400 Series"] | |||
image: /images/products/n400-128gsy03.jpg | |||
gallery: [ | |||
"/images/products/n400-128gsy03-1.jpg", | |||
"/images/products/n400-128gsy03-2.jpg", | |||
"/images/products/n400-128gsy03-3.jpg" | |||
] | |||
summary: High-speed, reliable 2.5-inch SSD providing excellent performance and storage capacity | |||
capacities: ["128GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: N400-1TSY03 | |||
name: N400-1TSY03 | |||
description: High-performance 2.5-inch SATA III SSD for laptops and desktop computers | |||
id: 13 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["N400 Series"] | |||
image: /images/products/n400-1tsy03.jpg | |||
gallery: [ | |||
"/images/products/n400-1tsy03-1.jpg", | |||
"/images/products/n400-1tsy03-2.jpg", | |||
"/images/products/n400-1tsy03-3.jpg" | |||
] | |||
summary: High-speed, reliable 2.5-inch SSD providing excellent performance and storage capacity | |||
capacities: ["1TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: N400-256GSY03 | |||
name: N400-256GSY03 | |||
description: High-performance 2.5-inch SATA III SSD for laptops and desktop computers | |||
id: 11 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["N400 Series"] | |||
image: /images/products/n400-256gsy03.jpg | |||
gallery: [ | |||
"/images/products/n400-256gsy03-1.jpg", | |||
"/images/products/n400-256gsy03-2.jpg", | |||
"/images/products/n400-256gsy03-3.jpg" | |||
] | |||
summary: High-speed, reliable 2.5-inch SSD providing excellent performance and storage capacity | |||
capacities: ["256GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: N400-512GSY03 | |||
name: N400-512GSY03 | |||
description: High-performance 2.5-inch SATA III SSD for laptops and desktop computers | |||
id: 12 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["N400 Series"] | |||
image: /images/products/n400-512gsy03.jpg | |||
gallery: [ | |||
"/images/products/n400-512gsy03-1.jpg", | |||
"/images/products/n400-512gsy03-2.jpg", | |||
"/images/products/n400-512gsy03-3.jpg" | |||
] | |||
summary: High-speed, reliable 2.5-inch SSD providing excellent performance and storage capacity | |||
capacities: ["512GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: PE-CR003 | |||
name: PE-CR003 | |||
description: USB 3.0 Multi-Card Reader, Supporting SD/microSD/CF/XQD Cards | |||
id: 47 | |||
categoryId: 5 | |||
usage: ["Mobile Data Transfer/Backup"] | |||
series: ["Card Reader"] | |||
image: /images/products/pe-cr003.jpg | |||
gallery: [ | |||
"/images/products/pe-cr003-1.jpg", | |||
"/images/products/pe-cr003-2.jpg", | |||
"/images/products/pe-cr003-3.jpg" | |||
] | |||
summary: High-speed USB 3.0 card reader supporting multiple professional memory card formats, ideal for professional photographers | |||
capacities: ["N/A"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: PE-CR405 | |||
name: PE-CR405 | |||
description: USB 3.0 Multi-Card Reader, Supporting SD/microSD/CF Cards | |||
id: 46 | |||
categoryId: 5 | |||
usage: ["Mobile Data Transfer/Backup"] | |||
series: ["Card Reader"] | |||
image: /images/products/pe-cr405.jpg | |||
gallery: [ | |||
"/images/products/pe-cr405-1.jpg", | |||
"/images/products/pe-cr405-2.jpg", | |||
"/images/products/pe-cr405-3.jpg" | |||
] | |||
summary: High-speed USB 3.0 card reader supporting multiple memory card formats, ideal for professional photographers | |||
capacities: ["N/A"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: Q60-1TST3 | |||
name: Q60-1TST3 | |||
description: High-performance 2.5-inch SATA III SSD for laptops and desktop computers | |||
id: 8 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["Q60 Series"] | |||
image: /images/products/q60-1tst3.jpg | |||
gallery: [ | |||
"/images/products/q60-1tst3-1.jpg", | |||
"/images/products/q60-1tst3-2.jpg", | |||
"/images/products/q60-1tst3-3.jpg" | |||
] | |||
summary: High-speed, reliable 2.5-inch SSD providing excellent performance and storage capacity | |||
capacities: ["1TB"] | |||
--- |
@@ -0,0 +1 @@ | |||
@@ -0,0 +1,17 @@ | |||
--- | |||
title: Q60-2TST3 | |||
name: Q60-2TST3 | |||
description: High-performance 2.5-inch SATA III SSD for laptops and desktop computers | |||
id: 9 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["Q60 Series"] | |||
image: /images/products/q60-2tst3.jpg | |||
gallery: [ | |||
"/images/products/q60-2tst3-1.jpg", | |||
"/images/products/q60-2tst3-2.jpg", | |||
"/images/products/q60-2tst3-3.jpg" | |||
] | |||
summary: High-speed, reliable 2.5-inch SSD providing excellent performance and storage capacity | |||
capacities: ["2TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: Q60-512GST3 | |||
name: Q60-512GST3 | |||
description: High-performance 2.5-inch SATA III SSD for laptops and desktop computers | |||
id: 7 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["Q60 Series"] | |||
image: /images/products/q60-512gst3.jpg | |||
gallery: [ | |||
"/images/products/q60-512gst3-1.jpg", | |||
"/images/products/q60-512gst3-2.jpg", | |||
"/images/products/q60-512gst3-3.jpg" | |||
] | |||
summary: High-speed, reliable 2.5-inch SSD providing excellent performance and storage capacity | |||
capacities: ["512GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: SD-HC32GBU1 | |||
name: SD-HC32GBU1 | |||
description: High-performance SD card for professional photography and videography | |||
id: 1 | |||
categoryId: 1 | |||
usage: ["Photography Storage", "Content Creation/Video Editing"] | |||
series: [] | |||
image: /images/products/sd-hc32gbu1.jpg | |||
gallery: [ | |||
"/images/products/sd-hc32gbu1-1.jpg", | |||
"/images/products/sd-hc32gbu1-2.jpg", | |||
"/images/products/sd-hc32gbu1-3.jpg" | |||
] | |||
summary: High-speed, reliable SD card supporting 4K video recording | |||
capacities: ["32GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: SD-XC128GBU3 | |||
name: SD-XC128GBU3 | |||
description: High-performance SD card for professional photography and videography | |||
id: 3 | |||
categoryId: 1 | |||
usage: ["Photography Storage", "Content Creation/Video Editing"] | |||
series: [] | |||
image: /images/products/sd-xc128gbu3.jpg | |||
gallery: [ | |||
"/images/products/sd-xc128gbu3-1.jpg", | |||
"/images/products/sd-xc128gbu3-2.jpg", | |||
"/images/products/sd-xc128gbu3-3.jpg" | |||
] | |||
summary: High-speed, reliable SD card supporting 4K/8K video recording | |||
capacities: ["128GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: SD-XC64GBU3 | |||
name: SD-XC64GBU3 | |||
description: High-performance SD card for professional photography and videography | |||
id: 2 | |||
categoryId: 1 | |||
usage: ["Photography Storage", "Content Creation/Video Editing"] | |||
series: [] | |||
image: /images/products/sd-xc64gbu3.jpg | |||
gallery: [ | |||
"/images/products/sd-xc64gbu3-1.jpg", | |||
"/images/products/sd-xc64gbu3-2.jpg", | |||
"/images/products/sd-xc64gbu3-3.jpg" | |||
] | |||
summary: High-speed, reliable SD card supporting 4K/8K video recording | |||
capacities: ["64GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: SD4-08GB-2666-1R8 | |||
name: SD4-08GB-2666-1R8 | |||
description: DDR4 2666MHz Laptop Memory, Single Rank | |||
id: 38 | |||
categoryId: 4 | |||
usage: ["Memory Upgrade/Performance Enhancement"] | |||
series: ["DDR4-SODIMM"] | |||
image: /images/products/sd4-08gb-2666-1r8.jpg | |||
gallery: [ | |||
"/images/products/sd4-08gb-2666-1r8-1.jpg", | |||
"/images/products/sd4-08gb-2666-1r8-2.jpg", | |||
"/images/products/sd4-08gb-2666-1r8-3.jpg" | |||
] | |||
summary: High-performance DDR4 laptop memory providing stable and reliable system performance | |||
capacities: ["8GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: SD4-08GB-3200-1R8 | |||
name: SD4-08GB-3200-1R8 | |||
description: DDR4 3200MHz Laptop Memory, Single Rank | |||
id: 39 | |||
categoryId: 4 | |||
usage: ["Memory Upgrade/Performance Enhancement"] | |||
series: ["DDR4-SODIMM"] | |||
image: /images/products/sd4-08gb-3200-1r8.jpg | |||
gallery: [ | |||
"/images/products/sd4-08gb-3200-1r8-1.jpg", | |||
"/images/products/sd4-08gb-3200-1r8-2.jpg", | |||
"/images/products/sd4-08gb-3200-1r8-3.jpg" | |||
] | |||
summary: High-performance DDR4 laptop memory providing stable and reliable system performance | |||
capacities: ["8GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: SD4-16GB-2666-2R8 | |||
name: SD4-16GB-2666-2R8 | |||
description: DDR4 2666MHz Laptop Memory, Dual Rank | |||
id: 40 | |||
categoryId: 4 | |||
usage: ["Memory Upgrade/Performance Enhancement"] | |||
series: ["DDR4-SODIMM"] | |||
image: /images/products/sd4-16gb-2666-2r8.jpg | |||
gallery: [ | |||
"/images/products/sd4-16gb-2666-2r8-1.jpg", | |||
"/images/products/sd4-16gb-2666-2r8-2.jpg", | |||
"/images/products/sd4-16gb-2666-2r8-3.jpg" | |||
] | |||
summary: High-performance DDR4 laptop memory providing stable and reliable system performance | |||
capacities: ["16GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: SD4-16GB-3200-2R8 | |||
name: SD4-16GB-3200-2R8 | |||
description: DDR4 3200MHz Laptop Memory, Dual Rank | |||
id: 41 | |||
categoryId: 4 | |||
usage: ["Memory Upgrade/Performance Enhancement"] | |||
series: ["DDR4-SODIMM"] | |||
image: /images/products/sd4-16gb-3200-2r8.jpg | |||
gallery: [ | |||
"/images/products/sd4-16gb-3200-2r8-1.jpg", | |||
"/images/products/sd4-16gb-3200-2r8-2.jpg", | |||
"/images/products/sd4-16gb-3200-2r8-3.jpg" | |||
] | |||
summary: High-performance DDR4 laptop memory providing stable and reliable system performance | |||
capacities: ["16GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: UD-032G01A1 | |||
name: UD-032G01A1 | |||
description: High-performance microSD card for mobile devices like smartphones and tablets | |||
id: 4 | |||
categoryId: 2 | |||
usage: ["Mobile Device Storage", "Media/Entertainment"] | |||
series: [] | |||
image: /images/products/ud-032g01a1.jpg | |||
gallery: [ | |||
"/images/products/ud-032g01a1-1.jpg", | |||
"/images/products/ud-032g01a1-2.jpg", | |||
"/images/products/ud-032g01a1-3.jpg" | |||
] | |||
summary: High-speed, reliable microSD card providing additional storage for mobile devices | |||
capacities: ["32GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: UD-064G01A1 | |||
name: UD-064G01A1 | |||
description: High-performance microSD card for mobile devices like smartphones and tablets | |||
id: 5 | |||
categoryId: 2 | |||
usage: ["Mobile Device Storage", "Media/Entertainment"] | |||
series: [] | |||
image: /images/products/ud-064g01a1.jpg | |||
gallery: [ | |||
"/images/products/ud-064g01a1-1.jpg", | |||
"/images/products/ud-064g01a1-2.jpg", | |||
"/images/products/ud-064g01a1-3.jpg" | |||
] | |||
summary: High-speed, reliable microSD card providing additional storage for mobile devices | |||
capacities: ["64GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: UD4-08GB-2666-1R8 | |||
name: UD4-08GB-2666-1R8 | |||
description: DDR4 2666MHz Desktop Memory, Single Rank | |||
id: 34 | |||
categoryId: 4 | |||
usage: ["Memory Upgrade/Performance Enhancement"] | |||
series: ["DDR4-UDIMM"] | |||
image: /images/products/ud4-08gb-2666-1r8.jpg | |||
gallery: [ | |||
"/images/products/ud4-08gb-2666-1r8-1.jpg", | |||
"/images/products/ud4-08gb-2666-1r8-2.jpg", | |||
"/images/products/ud4-08gb-2666-1r8-3.jpg" | |||
] | |||
summary: High-performance DDR4 desktop memory providing stable and reliable system performance | |||
capacities: ["8GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: UD4-08GB-3200-1R8 | |||
name: UD4-08GB-3200-1R8 | |||
description: DDR4 3200MHz Desktop Memory, Single Rank | |||
id: 35 | |||
categoryId: 4 | |||
usage: ["Memory Upgrade/Performance Enhancement"] | |||
series: ["DDR4-UDIMM"] | |||
image: /images/products/ud4-08gb-3200-1r8.jpg | |||
gallery: [ | |||
"/images/products/ud4-08gb-3200-1r8-1.jpg", | |||
"/images/products/ud4-08gb-3200-1r8-2.jpg", | |||
"/images/products/ud4-08gb-3200-1r8-3.jpg" | |||
] | |||
summary: High-performance DDR4 desktop memory providing stable and reliable system performance | |||
capacities: ["8GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: UD4-16GB-2666-2R8 | |||
name: UD4-16GB-2666-2R8 | |||
description: DDR4 2666MHz Desktop Memory, Dual Rank | |||
id: 36 | |||
categoryId: 4 | |||
usage: ["Memory Upgrade/Performance Enhancement"] | |||
series: ["DDR4-UDIMM"] | |||
image: /images/products/ud4-16gb-2666-2r8.jpg | |||
gallery: [ | |||
"/images/products/ud4-16gb-2666-2r8-1.jpg", | |||
"/images/products/ud4-16gb-2666-2r8-2.jpg", | |||
"/images/products/ud4-16gb-2666-2r8-3.jpg" | |||
] | |||
summary: High-performance DDR4 desktop memory providing stable and reliable system performance | |||
capacities: ["16GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: UD4-16GB-3200-2R8 | |||
name: UD4-16GB-3200-2R8 | |||
description: DDR4 3200MHz Desktop Memory, Dual Rank | |||
id: 37 | |||
categoryId: 4 | |||
usage: ["Memory Upgrade/Performance Enhancement"] | |||
series: ["DDR4-UDIMM"] | |||
image: /images/products/ud4-16gb-3200-2r8.jpg | |||
gallery: [ | |||
"/images/products/ud4-16gb-3200-2r8-1.jpg", | |||
"/images/products/ud4-16gb-3200-2r8-2.jpg", | |||
"/images/products/ud4-16gb-3200-2r8-3.jpg" | |||
] | |||
summary: High-performance DDR4 desktop memory providing stable and reliable system performance | |||
capacities: ["16GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: W400-128GSY01 | |||
name: W400-128GSY01 | |||
description: High-performance 2.5-inch SATA III SSD for laptops and desktop computers | |||
id: 14 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["W400 Series"] | |||
image: /images/products/w400-128gsy01.jpg | |||
gallery: [ | |||
"/images/products/w400-128gsy01-1.jpg", | |||
"/images/products/w400-128gsy01-2.jpg", | |||
"/images/products/w400-128gsy01-3.jpg" | |||
] | |||
summary: High-speed, reliable 2.5-inch SSD providing excellent performance and storage capacity | |||
capacities: ["128GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: W400-1TBSY01 | |||
name: W400-1TBSY01 | |||
description: High-performance 2.5-inch SATA III SSD for laptops and desktop computers | |||
id: 17 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["W400 Series"] | |||
image: /images/products/w400-1tbsy01.jpg | |||
gallery: [ | |||
"/images/products/w400-1tbsy01-1.jpg", | |||
"/images/products/w400-1tbsy01-2.jpg", | |||
"/images/products/w400-1tbsy01-3.jpg" | |||
] | |||
summary: High-speed, reliable 2.5-inch SSD providing excellent performance and storage capacity | |||
capacities: ["1TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: W400-256GSY01 | |||
name: W400-256GSY01 | |||
description: High-performance 2.5-inch SATA III SSD for laptops and desktop computers | |||
id: 15 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["W400 Series"] | |||
image: /images/products/w400-256gsy01.jpg | |||
gallery: [ | |||
"/images/products/w400-256gsy01-1.jpg", | |||
"/images/products/w400-256gsy01-2.jpg", | |||
"/images/products/w400-256gsy01-3.jpg" | |||
] | |||
summary: High-speed, reliable 2.5-inch SSD providing excellent performance and storage capacity | |||
capacities: ["256GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: W400-512GSY01 | |||
name: W400-512GSY01 | |||
description: High-performance 2.5-inch SATA III SSD for laptops and desktop computers | |||
id: 16 | |||
categoryId: 3 | |||
usage: ["System Boot Drive", "Gaming Storage", "Office/Learning Storage"] | |||
series: ["W400 Series"] | |||
image: /images/products/w400-512gsy01.jpg | |||
gallery: [ | |||
"/images/products/w400-512gsy01-1.jpg", | |||
"/images/products/w400-512gsy01-2.jpg", | |||
"/images/products/w400-512gsy01-3.jpg" | |||
] | |||
summary: High-speed, reliable 2.5-inch SSD providing excellent performance and storage capacity | |||
capacities: ["512GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: CR-201BK | |||
name: CR-201BK | |||
description: USB 3.0 マルチカードリーダー、SD/microSDカード対応 | |||
id: 45 | |||
categoryId: 5 | |||
usage: ["モバイルデータ転送/バックアップ"] | |||
series: ["Card Reader"] | |||
image: /images/products/cr-201bk.jpg | |||
gallery: [ | |||
"/images/products/cr-201bk-1.jpg", | |||
"/images/products/cr-201bk-2.jpg", | |||
"/images/products/cr-201bk-3.jpg" | |||
] | |||
summary: 高速USB 3.0カードリーダー、複数のメモリーカード形式に対応、携帯性に優れる | |||
capacities: ["N/A"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: DDR3-SODIMM 8GB 1.35V | |||
name: DDR3-SODIMM 8GB 1.35V | |||
description: DDR3 ノートPC用メモリ、低電圧版 | |||
id: 42 | |||
categoryId: 4 | |||
usage: ["メモリアップグレード/パフォーマンス向上"] | |||
series: ["DDR3"] | |||
image: /images/products/ddr3-sodimm-8gb-1.35v.jpg | |||
gallery: [ | |||
"/images/products/ddr3-sodimm-8gb-1.35v-1.jpg", | |||
"/images/products/ddr3-sodimm-8gb-1.35v-2.jpg", | |||
"/images/products/ddr3-sodimm-8gb-1.35v-3.jpg" | |||
] | |||
summary: 高性能DDR3ノートPCメモリ、安定した信頼性の高いシステムパフォーマンスを提供 | |||
capacities: ["8GB"] | |||
--- |
@@ -0,0 +1 @@ | |||
@@ -0,0 +1,17 @@ | |||
--- | |||
title: DDR3-UDIMM 8GB 1.5V | |||
name: DDR3-UDIMM 8GB 1.5V | |||
description: DDR3 デスクトップPC用メモリ、標準電圧版 | |||
id: 44 | |||
categoryId: 4 | |||
usage: ["メモリアップグレード/パフォーマンス向上"] | |||
series: ["DDR3"] | |||
image: /images/products/ddr3-udimm-8gb-1.5v.jpg | |||
gallery: [ | |||
"/images/products/ddr3-udimm-8gb-1.5v-1.jpg", | |||
"/images/products/ddr3-udimm-8gb-1.5v-2.jpg", | |||
"/images/products/ddr3-udimm-8gb-1.5v-3.jpg" | |||
] | |||
summary: 高性能DDR3デスクトップメモリ、安定した信頼性の高いシステムパフォーマンスを提供 | |||
capacities: ["8GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: E30-1TBTN1 | |||
name: E30-1TBTN1 | |||
description: ノートPCやデスクトップPC向けの高性能PCIe NVMe M.2 2280 SSD | |||
id: 24 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["E30 Series"] | |||
image: /images/products/e30-1tbtn1.jpg | |||
gallery: [ | |||
"/images/products/e30-1tbtn1-1.jpg", | |||
"/images/products/e30-1tbtn1-2.jpg", | |||
"/images/products/e30-1tbtn1-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いPCIe NVMe M.2 2280 SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["1TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: E30-256GTN1 | |||
name: E30-256GTN1 | |||
description: ノートPCやデスクトップPC向けの高性能PCIe NVMe M.2 2280 SSD | |||
id: 22 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["E30 Series"] | |||
image: /images/products/e30-256gtn1.jpg | |||
gallery: [ | |||
"/images/products/e30-256gtn1-1.jpg", | |||
"/images/products/e30-256gtn1-2.jpg", | |||
"/images/products/e30-256gtn1-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いPCIe NVMe M.2 2280 SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["256GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: E30-2TBTN1 | |||
name: E30-2TBTN1 | |||
description: ノートPCやデスクトップPC向けの高性能PCIe NVMe M.2 2280 SSD | |||
id: 25 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["E30 Series"] | |||
image: /images/products/e30-2tbtn1.jpg | |||
gallery: [ | |||
"/images/products/e30-2tbtn1-1.jpg", | |||
"/images/products/e30-2tbtn1-2.jpg", | |||
"/images/products/e30-2tbtn1-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いPCIe NVMe M.2 2280 SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["2TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: E30-512GTN1 | |||
name: E30-512GTN1 | |||
description: ノートPCやデスクトップPC向けの高性能PCIe NVMe M.2 2280 SSD | |||
id: 23 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["E30 Series"] | |||
image: /images/products/e30-512gtn1.jpg | |||
gallery: [ | |||
"/images/products/e30-512gtn1-1.jpg", | |||
"/images/products/e30-512gtn1-2.jpg", | |||
"/images/products/e30-512gtn1-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いPCIe NVMe M.2 2280 SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["512GB"] | |||
--- |
@@ -0,0 +1 @@ | |||
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HE70-2TBNHS1 | |||
name: HE70-2TBNHS1 | |||
description: ノートPCやデスクトップPC向けの高性能PCIe NVMe M.2 2280 SSD | |||
id: 27 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["HE70 Series"] | |||
image: /images/products/he70-2tbnhs1.jpg | |||
gallery: [ | |||
"/images/products/he70-2tbnhs1-1.jpg", | |||
"/images/products/he70-2tbnhs1-2.jpg", | |||
"/images/products/he70-2tbnhs1-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いPCIe NVMe M.2 2280 SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["2TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HE70-4TBNHS1 | |||
name: HE70-4TBNHS1 | |||
description: ノートPCやデスクトップPC向けの高性能PCIe NVMe M.2 2280 SSD | |||
id: 28 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["HE70 Series"] | |||
image: /images/products/he70-4tbnhs1.jpg | |||
gallery: [ | |||
"/images/products/he70-4tbnhs1-1.jpg", | |||
"/images/products/he70-4tbnhs1-2.jpg", | |||
"/images/products/he70-4tbnhs1-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いPCIe NVMe M.2 2280 SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["4TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HE71-2TBNDGH | |||
name: HE71-2TBNDGH | |||
description: ノートPCやデスクトップPC向けの高性能PCIe NVMe M.2 2280 SSD | |||
id: 29 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["HE71 Series"] | |||
image: /images/products/he71-2tbndgh.jpg | |||
gallery: [ | |||
"/images/products/he71-2tbndgh-1.jpg", | |||
"/images/products/he71-2tbndgh-2.jpg", | |||
"/images/products/he71-2tbndgh-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いPCIe NVMe M.2 2280 SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["2TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HE80-2TGHS | |||
name: HE80-2TGHS | |||
description: ノートPCやデスクトップPC向けの高性能PCIe NVMe M.2 2280 SSD | |||
id: 30 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["HE80 Series"] | |||
image: /images/products/he80-2tghs.jpg | |||
gallery: [ | |||
"/images/products/he80-2tghs-1.jpg", | |||
"/images/products/he80-2tghs-2.jpg", | |||
"/images/products/he80-2tghs-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いPCIe NVMe M.2 2280 SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["2TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HE80-2TNLHS | |||
name: HE80-2TNLHS | |||
description: ノートPCやデスクトップPC向けの高性能PCIe NVMe M.2 2280 SSD | |||
id: 31 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["HE80 Series"] | |||
image: /images/products/he80-2tnlhs.jpg | |||
gallery: [ | |||
"/images/products/he80-2tnlhs-1.jpg", | |||
"/images/products/he80-2tnlhs-2.jpg", | |||
"/images/products/he80-2tnlhs-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いPCIe NVMe M.2 2280 SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["2TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HSE-M20GRC01 | |||
name: HSE-M20GRC01 | |||
description: M.2 SSD外付けケース、SATA対応 | |||
id: 48 | |||
categoryId: 6 | |||
usage: ["モバイルデータ転送/バックアップ"] | |||
series: ["M.2 SSD Enclosure"] | |||
image: /images/products/hse-m20grc01.jpg | |||
gallery: [ | |||
"/images/products/hse-m20grc01-1.jpg", | |||
"/images/products/hse-m20grc01-2.jpg", | |||
"/images/products/hse-m20grc01-3.jpg" | |||
] | |||
summary: 高速USB 3.0 M.2 SATA SSD外付けケース、軽量でポータブル、プラグアンドプレイ対応 | |||
capacities: ["N/A"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HSE-M40GRC01 | |||
name: HSE-M40GRC01 | |||
description: M.2 SSD外付けケース、NVMe対応 | |||
id: 49 | |||
categoryId: 6 | |||
usage: ["モバイルデータ転送/バックアップ"] | |||
series: ["M.2 SSD Enclosure"] | |||
image: /images/products/hse-m40grc01.jpg | |||
gallery: [ | |||
"/images/products/hse-m40grc01-1.jpg", | |||
"/images/products/hse-m40grc01-2.jpg", | |||
"/images/products/hse-m40grc01-3.jpg" | |||
] | |||
summary: 高速USB 3.1 M.2 NVMe SSD外付けケース、軽量でポータブル、プラグアンドプレイ対応 | |||
capacities: ["N/A"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HSE-M4IN1GRC01 | |||
name: HSE-M4IN1GRC01 | |||
description: M.2 SSD外付けケース、SATA/NVMe対応、4-in-1デザイン | |||
id: 50 | |||
categoryId: 6 | |||
usage: ["モバイルデータ転送/バックアップ"] | |||
series: ["M.2 SSD Enclosure"] | |||
image: /images/products/hse-m4in1grc01.jpg | |||
gallery: [ | |||
"/images/products/hse-m4in1grc01-1.jpg", | |||
"/images/products/hse-m4in1grc01-2.jpg", | |||
"/images/products/hse-m4in1grc01-3.jpg" | |||
] | |||
summary: 高速USB 3.1 M.2 SSD外付けケース、複数のインターフェースに対応、プロフェッショナルユーザー向け | |||
capacities: ["N/A"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: HSE-M6IN1GRC01 | |||
name: HSE-M6IN1GRC01 | |||
description: M.2 SSD外付けケース、SATA/NVMe/mSATA対応、6-in-1デザイン | |||
id: 51 | |||
categoryId: 6 | |||
usage: ["モバイルデータ転送/バックアップ"] | |||
series: ["M.2 SSD Enclosure"] | |||
image: /images/products/hse-m6in1grc01.jpg | |||
gallery: [ | |||
"/images/products/hse-m6in1grc01-1.jpg", | |||
"/images/products/hse-m6in1grc01-2.jpg", | |||
"/images/products/hse-m6in1grc01-3.jpg" | |||
] | |||
summary: 高速USB 3.1 M.2/mSATA SSD外付けケース、複数のインターフェースに対応、プロフェッショナルユーザー向け | |||
capacities: ["N/A"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: M200-SC256G | |||
name: M200-SC256G | |||
description: ノートPCやデスクトップPC向けの高性能M.2 2280 SATA III SSD | |||
id: 32 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["M200 Series"] | |||
image: /images/products/m200-sc256g.jpg | |||
gallery: [ | |||
"/images/products/m200-sc256g-1.jpg", | |||
"/images/products/m200-sc256g-2.jpg", | |||
"/images/products/m200-sc256g-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いM.2 2280 SATA III SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["256GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: M200-SC512G | |||
name: M200-SC512G | |||
description: ノートPCやデスクトップPC向けの高性能M.2 2280 SATA III SSD | |||
id: 33 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["M200 Series"] | |||
image: /images/products/m200-sc512g.jpg | |||
gallery: [ | |||
"/images/products/m200-sc512g-1.jpg", | |||
"/images/products/m200-sc512g-2.jpg", | |||
"/images/products/m200-sc512g-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いM.2 2280 SATA III SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["512GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: ME70-1TA01 | |||
name: ME70-1TA01 | |||
description: ノートPCやデスクトップPC向けの高性能PCIe NVMe M.2 SSD | |||
id: 20 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["ME70 Series"] | |||
image: /images/products/me70-1ta01.jpg | |||
gallery: [ | |||
"/images/products/me70-1ta01-1.jpg", | |||
"/images/products/me70-1ta01-2.jpg", | |||
"/images/products/me70-1ta01-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いPCIe NVMe M.2 SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["1TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: ME70-2TA01 | |||
name: ME70-2TA01 | |||
description: ノートPCやデスクトップPC向けの高性能PCIe NVMe M.2 SSD | |||
id: 21 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["ME70 Series"] | |||
image: /images/products/me70-2ta01.jpg | |||
gallery: [ | |||
"/images/products/me70-2ta01-1.jpg", | |||
"/images/products/me70-2ta01-2.jpg", | |||
"/images/products/me70-2ta01-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いPCIe NVMe M.2 SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["2TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: MN50-1000GA01 | |||
name: MN50-1000GA01 | |||
description: ノートPCやデスクトップPC向けの高性能PCIe NVMe M.2 SSD | |||
id: 19 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["MN50 Series"] | |||
image: /images/products/mn50-1000ga01.jpg | |||
gallery: [ | |||
"/images/products/mn50-1000ga01-1.jpg", | |||
"/images/products/mn50-1000ga01-2.jpg", | |||
"/images/products/mn50-1000ga01-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いPCIe NVMe M.2 SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["1TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: MN50-512GA01 | |||
name: MN50-512GA01 | |||
description: ノートPCやデスクトップPC向けの高性能PCIe NVMe M.2 SSD | |||
id: 18 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["MN50 Series"] | |||
image: /images/products/mn50-512ga01.jpg | |||
gallery: [ | |||
"/images/products/mn50-512ga01-1.jpg", | |||
"/images/products/mn50-512ga01-2.jpg", | |||
"/images/products/mn50-512ga01-3.jpg" | |||
] | |||
summary: 高速で信頼性の高いPCIe NVMe M.2 SSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["512GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: N400-128GSY03 | |||
name: N400-128GSY03 | |||
description: ノートPCやデスクトップPC向けの高性能2.5インチSATA III SSD | |||
id: 10 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["N400 Series"] | |||
image: /images/products/n400-128gsy03.jpg | |||
gallery: [ | |||
"/images/products/n400-128gsy03-1.jpg", | |||
"/images/products/n400-128gsy03-2.jpg", | |||
"/images/products/n400-128gsy03-3.jpg" | |||
] | |||
summary: 高速で信頼性の高い2.5インチSSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["128GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: N400-1TSY03 | |||
name: N400-1TSY03 | |||
description: ノートPCやデスクトップPC向けの高性能2.5インチSATA III SSD | |||
id: 13 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["N400 Series"] | |||
image: /images/products/n400-1tsy03.jpg | |||
gallery: [ | |||
"/images/products/n400-1tsy03-1.jpg", | |||
"/images/products/n400-1tsy03-2.jpg", | |||
"/images/products/n400-1tsy03-3.jpg" | |||
] | |||
summary: 高速で信頼性の高い2.5インチSSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["1TB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: N400-256GSY03 | |||
name: N400-256GSY03 | |||
description: ノートPCやデスクトップPC向けの高性能2.5インチSATA III SSD | |||
id: 11 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["N400 Series"] | |||
image: /images/products/n400-256gsy03.jpg | |||
gallery: [ | |||
"/images/products/n400-256gsy03-1.jpg", | |||
"/images/products/n400-256gsy03-2.jpg", | |||
"/images/products/n400-256gsy03-3.jpg" | |||
] | |||
summary: 高速で信頼性の高い2.5インチSSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["256GB"] | |||
--- |
@@ -0,0 +1,17 @@ | |||
--- | |||
title: N400-512GSY03 | |||
name: N400-512GSY03 | |||
description: ノートPCやデスクトップPC向けの高性能2.5インチSATA III SSD | |||
id: 12 | |||
categoryId: 3 | |||
usage: ["システム起動ドライブ", "ゲームストレージ", "オフィス/学習用ストレージ"] | |||
series: ["N400 Series"] | |||
image: /images/products/n400-512gsy03.jpg | |||
gallery: [ | |||
"/images/products/n400-512gsy03-1.jpg", | |||
"/images/products/n400-512gsy03-2.jpg", | |||
"/images/products/n400-512gsy03-3.jpg" | |||
] | |||
summary: 高速で信頼性の高い2.5インチSSD、優れたパフォーマンスとストレージ容量を提供 | |||
capacities: ["512GB"] | |||
--- |