diff options
Diffstat (limited to 'src/data/gear.ts')
| -rw-r--r-- | src/data/gear.ts | 75 |
1 files changed, 19 insertions, 56 deletions
diff --git a/src/data/gear.ts b/src/data/gear.ts index 73fe3fd..50d24a3 100644 --- a/src/data/gear.ts +++ b/src/data/gear.ts @@ -1,25 +1,3 @@ -import iphone11Img from "../assets/iphone11.webp"; -import airpodsProImg from "../assets/airpodspro.webp"; -import macbookAirImg from "../assets/macbookair.webp"; - -import ryzen7700xImg from "../assets/amdryzen7700x.webp"; -import ryzen5600gImg from "../assets/amdryzen55600g.webp"; -import noctuaNhD9lImg from "../assets/noctuanh-d9l.webp"; -import gskillTridentZ5Img from "../assets/gskilltridentz5.webp"; -import b650eIImg from "../assets/b650e-i.webp"; -import b550mItxImg from "../assets/B550MITX.webp"; -import pro980Img from "../assets/980pro.webp"; -import p3plusImg from "../assets/p3plus.webp"; -import patriotP300Img from "../assets/patriop300.webp"; -import sf750Img from "../assets/sf750.webp"; -import sf450Img from "../assets/sf450.webp"; -import rx9070xtImg from "../assets/rx9070xt.webp"; -import ncaseM2Img from "../assets/ncasem2.webp"; - -import ksm32ed8Img from "../assets/ksm32ed8.webp"; -import seagateIronWolfImg from "../assets/seagateironwolf.webp"; -import jonsboN2Img from "../assets/jonsbon2.webp"; - export interface Part { name: string; description: string; @@ -28,44 +6,29 @@ export interface Part { } export const dailyDrivers: Part[] = [ - { - name: "iPhone 11", - description: "64 GB - White", - url: "https://support.apple.com/111865", - image: iphone11Img, - }, - { - name: "AirPods Pro", - description: "1st Gen", - url: "https://support.apple.com/111861", - image: airpodsProImg, - }, - { - name: "MacBook Air", - description: "13\" - M2 - 512 GB", - url: "https://support.apple.com/111867", - image: macbookAirImg, - }, + { name: "iPhone 11", description: "64 GB - White", url: "https://support.apple.com/111865", image: "/images/iphone11.webp" }, + { name: "AirPods Pro", description: "1st Gen", url: "https://support.apple.com/111861", image: "/images/airpodspro.webp" }, + { name: "MacBook Air", description: "13\" - M2 - 512 GB", url: "https://support.apple.com/111867", image: "/images/macbookair.webp" } ]; export const desktopParts: Part[] = [ - { name: "AMD Ryzen 7 7700X", description: "CPU", image: ryzen7700xImg }, - { name: "Noctua NH-D9L chromax.black", description: "CPU cooler", image: noctuaNhD9lImg }, - { name: "G.Skill Trident Z5 NEO 32 GB DDR5-6000", description: "RAM", image: gskillTridentZ5Img }, - { name: "ROG STRIX B650E-I", description: "Motherboard", image: b650eIImg }, - { name: "Samsung 980 Pro 2 TB", description: "NVMe (Windows)", image: pro980Img }, - { name: "Crucial P3 Plus 500 GB", description: "NVMe (Linux)", image: p3plusImg }, - { name: "Corsair SF750", description: "SFX PSU", image: sf750Img }, - { name: "XFX Radeon RX 9070 XT QuickSilver", description: "GPU", image: rx9070xtImg }, - { name: "NCASE M2 - Round", description: "Case", image: ncaseM2Img }, + { name: "AMD Ryzen 7 7700X", description: "CPU", image: "/images/amdryzen7700x.webp" }, + { name: "Noctua NH-D9L chromax.black", description: "CPU cooler", image: "/images/noctuanh-d9l.webp" }, + { name: "G.Skill Trident Z5 NEO 32 GB DDR5-6000", description: "RAM", image: "/images/gskilltridentz5.webp" }, + { name: "ROG STRIX B650E-I", description: "Motherboard", image: "/images/b650e-i.webp" }, + { name: "Samsung 980 Pro 2 TB", description: "NVMe (Windows)", image: "/images/980pro.webp" }, + { name: "Crucial P3 Plus 500 GB", description: "NVMe (Linux)", image: "/images/p3plus.webp" }, + { name: "Corsair SF750", description: "SFX PSU", image: "/images/sf750.webp" }, + { name: "XFX Radeon RX 9070 XT QuickSilver", description: "GPU", image: "/images/rx9070xt.webp" }, + { name: "NCASE M2 - Round", description: "Case", image: "/images/ncasem2.webp" } ]; export const nasParts: Part[] = [ - { name: "AMD Ryzen 5 5600G", description: "CPU", image: ryzen5600gImg }, - { name: "Kingston KSM32ED8 2x 8 GB ECC", description: "RAM", image: ksm32ed8Img }, - { name: "ASRock B550M-ITX", description: "Motherboard", image: b550mItxImg }, - { name: "Seagate IronWolf 8 TB x 2", description: "Storage", image: seagateIronWolfImg }, - { name: "Patriot P300 128 GB", description: "Cache SSD", image: patriotP300Img }, - { name: "Corsair SF450", description: "SFX PSU", image: sf450Img }, - { name: "Jonsbo N2", description: "Mini-NAS case", image: jonsboN2Img }, + { name: "AMD Ryzen 5 5600G", description: "CPU", image: "/images/amdryzen55600g.webp" }, + { name: "Kingston KSM32ED8 2x 8 GB ECC", description: "RAM", image: "/images/ksm32ed8.webp" }, + { name: "ASRock B550M-ITX", description: "Motherboard", image: "/images/B550MITX.webp" }, + { name: "Seagate IronWolf 8 TB x 2", description: "Storage", image: "/images/seagateironwolf.webp" }, + { name: "Patriot P300 128 GB", description: "Cache SSD", image: "/images/patriop300.webp" }, + { name: "Corsair SF450", description: "SFX PSU", image: "/images/sf450.webp" }, + { name: "Jonsbo N2", description: "Mini-NAS case", image: "/images/jonsbon2.webp" } ];
\ No newline at end of file |
