40 lines
532 B
Text
40 lines
532 B
Text
|
---
|
||
|
const { id, name } = Astro.props;
|
||
|
---
|
||
|
|
||
|
<div class="card">
|
||
|
<div class="image-wrapper">
|
||
|
<img src={`/img/logo/${id}.webp`} alt={`${name} logo`}" />
|
||
|
</div>
|
||
|
<div class="text">
|
||
|
<h1>{name}</h1>
|
||
|
<p><slot /></p>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<style>
|
||
|
.card {
|
||
|
border: 1px solid black;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
padding: 10px;
|
||
|
width: 50%;
|
||
|
margin: 10px 0;
|
||
|
}
|
||
|
|
||
|
.text {
|
||
|
margin-left: 20px;
|
||
|
}
|
||
|
|
||
|
.image-wrapper {
|
||
|
height: 100px;
|
||
|
width: 100px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
height: 100%;
|
||
|
width: auto;
|
||
|
}
|
||
|
</style>
|