Added a new project and fixed scrollupbutton

This commit is contained in:
2025-09-04 00:03:02 -06:00
parent 08537db2ab
commit a2a3b114dd
6 changed files with 315 additions and 277 deletions

View File

@@ -21,6 +21,19 @@ const { project } = Astro.props;
{project.description}
</p>
{
project.tags && project.tags.length > 0 && (
<div class="flex gap-2 flex-wrap mb-4 justify-center">
{project.tags.map((tag: string) => (
<div class="badge badge-primary font-bold">
<Icon name="mdi:tag" class="text-lg" />
{tag}
</div>
))}
</div>
)
}
<div class="card-actions justify-end">
<a
href={project.link}