Skip to content

Commit e565c1d

Browse files
committed
✨ Added new pokedle project
1 parent 4e27940 commit e565c1d

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed
39.6 KB
Binary file not shown.

src/components/projects/Projects.astro

+18-4
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,34 @@ import TitleGradient from "../decoration/TitleGradient.astro";
77
<div class="mx-auto max-w-screen-xl px-4">
88
<TitleGradient title="Some of my proyects" />
99
<div class="mx-auto max-w-screen-xl px-4 flex items-center justify-center">
10-
<div class="grid grid-cols-1 md:grid-cols-2 gap-16 m-10">
10+
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
1111
<Card
1212
title="Hamabeads Shop"
13-
body="PHP web app for selling Hama Beads."
13+
body=""
1414
href="https://www.hamabeadsshop.com/"
1515
image="/assets/thumbnails/HamaBeadsShop.webp"
1616
/>
1717
<Card
18-
title="Next.js Proyect"
19-
body="Next.js web app on development"
18+
title="ProjectQr"
19+
body=""
2020
href="https://proyectqr-riuhwp6on-diegomarty.vercel.app/"
2121
image="/assets/thumbnails/ProyectQr.webp"
2222
/>
23+
<Card
24+
title="Pokedle"
25+
body=""
26+
href="https://pokedle.diegomarty.com/"
27+
image="/assets/thumbnails/pokedle-preview.webp"
28+
/>
2329
</div>
2430
</div>
31+
<div class="flex justify-center mt-8">
32+
<a
33+
href="/cv"
34+
class="inline-flex bg-amber-400 rounded-lg py-2 px-3 hover:bg-white hover:text-amber-400 text-gray-800 font-bold"
35+
>
36+
+ Info in my CV
37+
</a>
38+
</div>
2539
</div>
2640
</section>

src/components/projects/ProjectsCard.astro

-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ const { href, title, body, image } = Astro.props;
3333
<h2>
3434
{title}
3535
</h2>
36-
<p>
37-
{body}
38-
</p>
3936
</a>
4037
</div>
4138
</div>

0 commit comments

Comments
 (0)