Beny Dishon K

const hardware = {
  computers: [
    {
      name: 'Macbook Air M2',
      desc: 'My secondary computer that i used to work outside.',
      tags: ['Laptop']
    },
    {
      name: 'Personal Computer (AMD Ryzen 7900X (12 Core), 32GB (6000MHZ) of RAM, RTX 3070, 2TB SSD)',
      desc: 'My main computer that i used to work at home.',
      tags: ['Desktop']
    },
    {
      name: 'iPhone 15 Pro',
      desc: 'My primary phone which i have with me at all times, I love taking photos and using to listen to music.',
      tags: ['Phone']
    },
    {
      name: 'Apple Watch Series 9',
      desc: 'My watch which i commonly use to keep track of my health and check notifications.',
      tags: ['Watch']
    },
    {
      name: 'Logitech G PRO X Superlight 2',
      desc: 'My wireless and lightweight gaming mouse.',
      tags: ['Mouse']
    },
    {
      name: 'Logitech G Pro',
      desc: 'My TKL Gaming Keyboard, I use it primarily to play games and code occasionally.',
      tags: ['Keyboard']
    }
  ],
  monitors: [
    {
      name: 'BenQ PD2705U',
      desc: 'My main monitor, its a 27" 4K UHD monitor which i use for design and development.',
      tags: ['Monitor']
    },
    {
      name: 'LG UltraGear 27GP750-B',
      desc: 'My gaming monitor, its a 27" 1080p 240hz monitor. I use it for gaming.',
      tags: ['Monitor']
    }
  ],
  audio: [
    {
      name: 'Logitech G Pro X Gaming Headset',
      desc: 'One of the best gaming headphones i have used with a really good microphone.',
      tags: ['Headphone']
    },
    {
      name: 'Apple Airpods Pro',
      desc: 'My daily carry earbuds to consume media and listen to music on the fly.',
      tags: ['Earbuds']
    }
  ]
}
 
const software = [
  {
    name: 'Visual Studio Code',
    desc: 'My main editor, I use it for everything. I use it for writing code, writing notes, writing this page, and even writing this list.',
    tags: ['Editor']
  },
  {
    name: 'WARP',
    desc: 'I use it as my primary terminal app.',
    tags: ['Terminal']
  },
  {
    name: 'Postman',
    desc: 'I use it to test my APIs',
    tags: ['API']
  },
  {
    name: 'Figma',
    desc: 'I primarily use this to focus on designing and prototyping my apps.',
    tags: ['UI/UX']
  }
]
 
const hosting = [
  {
    name: 'Vercel',
    desc: "I use it to host my website, it's pretty awesome. I can deploy my website with just a git push.",
    tags: ['Hosting']
  }
]