17 lines
255 B
Plaintext
17 lines
255 B
Plaintext
---
|
|
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>
|