personal-website-sveltekit/src/routes/uses/hardware-accessories.svelte
2024-12-18 13:51:05 -08:00

67 lines
2 KiB
Svelte

<script lang="ts">
import ExternalLink from "$lib/components/ExternalLink.svelte";
</script>
<section>
<h2>Hardware & Accessories</h2>
<ul>
<li>MacBook Pro 15-inch for work.</li>
<li>
Personal desktop running <ExternalLink
linkData={{
href: "https://pop.system76.com/",
ariaLabel: "PopOS Linux Distro",
}}
textData={{ text: "PopOS", showIcon: true, location: "left" }}
/>.
</li>
<li>Dell XPS 13 running PopOS.</li>
<li>
Phone 📱: Pixel 6 running <ExternalLink
linkData={{
href: "https://grapheneos.org/",
ariaLabel: "GrapheneOS",
}}
textData={{ text: "GrapheneOS", showIcon: true, location: "left" }}
/>.
</li>
<li>
Keyboard ⌨️: <ExternalLink
linkData={{
href: "https://www.duckychannel.com.tw/en/Ducky-One2-RGB-TKL",
ariaLabel: "Ducky One 2 RGB TKL Keyboard"
}}
textData={{ text: "Ducky One 2 RGB TKL Keyboard", showIcon: true, location: "left" }}
/>
</li>
<li>
Mouse 🖱️: <ExternalLink
linkData={{
href: "https://www.amazon.com/Logitech-G502-Performance-Gaming-Mouse/dp/B07GBZ4Q68",
ariaLabel: "Logitech G502 Gaming Mouse"
}}
textData={{ text: "Logitech G502 Gaming Mouse", showIcon: true, location: "left" }}
/>
</li>
<li>
Chair 🪑: <ExternalLink
linkData={{
href: "https://secretlabus.myshopify.com/collections/omega-series#omega_2020-stealth",
ariaLabel: "Secretlab Omega 2020 Fabric"
}}
textData={{ text: "Secretlab Omega 2020 Fabric", showIcon: true, location: "left" }}
/>
</li>
<li>
Monitor 🖥️: <ExternalLink
linkData={{ href: "https://www.samsung.com/us/computing/monitors/gaming/32--odyssey-g7-gaming-monitor-lc32g75tqsnxza/", ariaLabel: "Samsung Odyssey G7 Gaming Monitor" }} textData={{ text: "Samsung Odyssey G7 Gaming Monitor", showIcon: true, location: "left" }} />
</li>
</ul>
</section>
<style lang="postcss">
ul {
list-style-type: square;
padding-inline-start: 4rem;
}
</style>