🔥 remove tools/uses page
This commit is contained in:
parent
eda806af2b
commit
18f66fb732
3 changed files with 0 additions and 82 deletions
|
@ -1,38 +0,0 @@
|
|||
---
|
||||
import stackData from '../../data/tools.json'
|
||||
import SectionContainer from '../components/SectionContainer.astro';
|
||||
---
|
||||
|
||||
<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}
|
||||
</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>
|
||||
)}
|
||||
</ul>
|
||||
</main>
|
||||
</SectionContainer>
|
Loading…
Add table
Add a link
Reference in a new issue