Skip to content

Commit

Permalink
edit links under each project
Browse files Browse the repository at this point in the history
  • Loading branch information
jones58 committed Dec 11, 2024
1 parent 53549e6 commit 047b2d6
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions src/pages/coding/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ const projects = [
"Responded to user feedback by adding a custom marker to handle hover events.",
],
link: "https://brutalistmap.jackkershaw.net/",
github_link: "https://github.com/jones58/brutalist-map-2/",
github_link: "https://github.com/jones58/londonbrutalistmap",
blog_post: "https://www.jackkershaw.net/blog/brutalist-map/",
image_folder: "brutalist-map",
},
{
Expand Down Expand Up @@ -177,14 +178,23 @@ const projects = [
))}
</ul>
</div>
<div class="flex-col flex justify-between space-y-4">
<div class="flex flex-col sm:flex-row justify-start sm:items-center gap-4">
{project.blog_post && (
<a
href={project.blog_post}
target="_blank"
class=" bg-ykb text-neutral-100 rounded-lg py-2 px-4 text-center hover:bg-ykbdark"
>
View Blog Post
</a>
)}
{project.github_link && (
<a
href={project.github_link}
target="_blank"
class=" bg-ykb text-neutral-100 rounded-lg py-2 px-4 text-center hover:bg-ykbdark"
>
Read More on Github
View Github
</a>
)}
{project.link && (
Expand Down

0 comments on commit 047b2d6

Please sign in to comment.