2023-08-29 11:57:38 +02:00
|
|
|
---
|
2023-12-09 16:04:28 +01:00
|
|
|
import stackData from '../../data/tools.json'
|
|
|
|
import SectionContainer from '../components/SectionContainer.astro';
|
2023-08-29 11:57:38 +02:00
|
|
|
---
|
|
|
|
|
2023-12-09 16:04:28 +01:00
|
|
|
<SectionContainer>
|
|
|
|
<main class="flex flex-col justify-center items-left mx-auto pt-8">
|
|
|
|
<h1 class="text-2xl">Tools</h1>
|
|
|
|
<p>Tools I use everyday (or at least most days)</p>
|
|
|
|
<ul class="pt-2">
|
|
|
|
{stackData.map((data) =>
|
|
|
|
<div class="p-2 mb-4 cards">
|
|
|
|
<ul>
|
|
|
|
<a
|
|
|
|
href={data.link}
|
|
|
|
class="flex gap-2"
|
|
|
|
>
|
|
|
|
<img src={data.icon} class="w-20 h-20" />
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<p>
|
|
|
|
{data.name}
|
2023-12-09 17:30:14 +01:00
|
|
|
</p>
|
|
|
|
<div class="description">
|
|
|
|
<p>{data.description}</p>
|
|
|
|
</div>
|
|
|
|
<div class="tag">
|
|
|
|
<button class="flex auto border-solid border-2 px-1 rounded-md text-sm">
|
|
|
|
#{data.tag}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
)}
|
2023-12-09 16:04:28 +01:00
|
|
|
</ul>
|
|
|
|
</main>
|
|
|
|
</SectionContainer>
|