mirror of
https://git.aria.coffee/BuyMyAria/aria.coffee.git
synced 2025-06-15 12:59:55 +00:00
12 lines
301 B
Text
12 lines
301 B
Text
---
|
|
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>
|