Added a new project and fixed scrollupbutton
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user