diff options
| author | schererleander <leander@schererleander.de> | 2025-07-14 18:07:16 +0200 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-07-14 18:07:16 +0200 |
| commit | 6ef856f34717add27ccbf21056a7c968056e1ea5 (patch) | |
| tree | dd1ab8590d811bb97a94761ac6fa893208d25308 /src | |
| parent | 44f70c0e3a0f05eed6e211215bd44e3f1c408ce8 (diff) | |
chore: remove unused gear data
Diffstat (limited to 'src')
| -rw-r--r-- | src/data/gear.ts | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/data/gear.ts b/src/data/gear.ts deleted file mode 100644 index 50d24a3..0000000 --- a/src/data/gear.ts +++ /dev/null @@ -1,34 +0,0 @@ -export interface Part { - name: string; - description: string; - image?: string; - url?: string; -} - -export const dailyDrivers: Part[] = [ - { 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: "/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: "/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 |
