feat: Add a portfolio to the website

This commit is contained in:
Aria 2024-12-29 15:43:17 +11:00
parent e1ee5f3fa5
commit 4f347285bb
Signed by: aria
GPG key ID: 19AB7AA462B8AB3B
3 changed files with 201 additions and 2 deletions

View file

@ -0,0 +1,12 @@
---
import Partition from "./Partition.astro";
const { name, date, tags, description, link } = Astro.props;
---
<Partition>
<h2><a class="nav-btn text-2xl" href={link} target="_blank">{name}</a></h2>
<p>Date: {date}</p>
<p><sub>{tags}</sub></p>
<hr/>
<p><slot /></p>
</Partition>