feat: init

This commit is contained in:
2026-04-09 20:41:06 -05:00
commit 3f49236deb
60 changed files with 3989 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
---
interface Props {
url: string;
image: string;
title: string;
date: string;
}
const { url, image, title, date } = Astro.props;
---
<li class="card">
<a class="card__link" href={url}>
<div class="center">
<img
class="card__img"
src={image}
role="presentation"
width="226"
height="127"
loading="lazy"
decoding="async"
/>
</div>
<h3 class="card__title">
{title}
</h3>
</a>
</li>