Move to Astro

This commit is contained in:
2023-02-01 14:12:30 +00:00
commit bf36c8c9b3
463 changed files with 10340 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
---
import Card from "./Card.astro";
export interface Props {
title: string;
src: string;
}
const { title, src } = Astro.props;
---
<div class="container solocard-container">
<div class="row">
<Card title={title} src={src} />
</div>
</div>