CyR1en

const hardware = {
	computers: [
		{
			name: 'Macbook Pro M4',
			desc: 'My portable arsenal that can take up any coding challenge or any photography edits on the go. Powerful and always ready for action.',
			tags: ['Laptop']
		},
		{
			name: 'Custom Desktop PC',
			desc: 'My main rig, built for power and performance. With an Intel i7-17000k, 64GB RAM, and an RTX 4080 Super, it handles everything from coding to gaming with ease.',
			tags: ['Desktop', 'PC']
		},
		{
			name: 'Coding Keyboard',
			desc: 'Tofu 60 HHKB with HMX gravel switches, and bubble tea keycaps. The "Performative" Keyboard XD.',
			tags: ['Keyboard']
		},
		{
			name: 'Gaming Keyboard',
			desc: 'Wooting 60He module, with Tofu 60 Redux case, Gateron magnetic switches, and Twist R2 keycaps.',
			tags: ['Keyboard']
		},
		{
			name: 'Razer Viper V3 Pro',
			desc: 'Super lightweight mouse that's perfect for gaming and productivity.',
			tags: ['Mouse']
		}
	],
	monitors: [
		{
			name: 'LG 34 Inch UltraGear™ OLED',
			desc: 'The big boss on my desk! A 34" 1440p 240Hz curved OLED monitor that makes everything look stunning and smooth.',
			tags: ['Monitor']
		}
	],
	audio: [
		{
			name: 'Edifier R1280DB',
			desc: 'A classic bookshelf monitor with a warm sound profile – perfect for music and gaming.',
			tags: ['Speaker']
		},
		{
			name: 'KZ Castor Pro',
			desc: 'An affordable IEM with punchy bass and clear mids – great for everyday listening!',
			tags: ['In-ear Monitor']
		}
	]
};

const software = [
	{
		name: 'Neovim',
		desc: 'My go-to text editor for coding. Highly customizable and efficient, it makes programming a breeze.',
		tags: ['Editor']
	},
    {
        name: 'Aerospace',
        desc: 'My favorite tiling manager for macOS. It helps me keep my workspace organized and boosts my productivity.',
        tags: ['Tiling Manager']
    },
    {
        name: 'Komorebi',
        desc: 'Tiling manager for my Windows machine. Not as good as Aerospace, but it gets the job done.',
        tags: ['Tiling Manager']
    },
	{
		name: 'Alacritty',
		desc: 'A customizable and fast terminal emulator that makes my command line look as cool as it is powerful.',
		tags: ['Terminal']
	},
	{
		name: 'Oh my zsh',
		desc: 'My shell of choice, unless I'm on Windows, then I use PowerShell 7 :3.',
		tags: ['Terminal']
	}
];

const hosting = [
	{
		name: 'Lithium Hosting',
		desc: 'Reliable hosting service that offers web hosting, VPS, and dedicated servers at affordable prices.',
		tags: ['Hosting']
	},
	{
		name: 'Vercel',
		desc: "Woooah magic hosting :D.",
		tags: ['Hosting']
	}
];