const hardware = {
computers: [
{
name: 'Lenovo Yoga Slim 7 Aura',
desc: 'My powerhouse laptop with Intel Core Ultra 7 258V (2.20 GHz) and 32GB RAM. Perfect balance of performance and portability.',
tags: ['Laptop']
},
{
name: 'Logitech MX Keys Mini',
desc: 'My classy compact 65% keyboard – perfect for keeping things stylish and minimal.',
tags: ['Keyboard']
},
{
name: 'Noir Z1',
desc: 'My compact 65% layout keyboard',
tags: ['Keyboard']
},
{
name: 'Logitech MX Master 3S',
desc: 'The all-rounder mouse I use for everything... except pwning noobs in games. 😅',
tags: ['Mouse']
}
],
monitors: [
{
name: 'Xiaomi Mi Curved Gaming Monitor 34',
desc: 'The big boss on my desk! A 34" 1440p 144Hz curved beauty that makes everything look amazing.',
tags: ['Monitor']
}
],
audio: [
{
name: 'Sony WH-CH720N',
desc: 'Comfortable wireless headphones with excellent noise cancellation and impressive battery life for immersive audio experiences.',
tags: ['Headphone']
},
{
name: 'Boat Nirvana Ion',
desc: 'Portable earphones with great sound quality - perfect companion for music on the go.',
tags: ['Earbuds']
}
]
};
const software = [
{
name: 'VsCode',
desc: 'My Swiss Army knife for everything text-related – from coding to taking notes. Its extensions are like magic spells for productivity.',
tags: ['Editor']
},
{
name: 'Tmux',
desc: 'Terminal multitasking wizardry – because tabs are too mainstream.',
tags: ['Terminal']
},
{
name: 'Alacritty',
desc: "A lightning-fast terminal emulator that's as cool as it sounds, with GPU acceleration and all the bells and whistles.",
tags: ['Terminal']
},
{
name: 'Oh my zsh',
desc: 'My shell of choice, spiced up with the awesome powerlevel10k theme.',
tags: ['Terminal']
}
];
const hosting = [
{
name: 'Vercel',
desc: "Deploys so fast, it's practically magic! Git push, and voilà – my website is live.",
tags: ['Hosting']
}
];
Manasvi