feat: ajout annonce particules fines

main
Jalil Arfaoui 2023-09-27 16:10:38 +02:00
parent 758f9483ea
commit bbe246f9f5
3 changed files with 28 additions and 17 deletions

Binary file not shown.

View File

@ -1,12 +1,11 @@
--- ---
export interface Props { export interface Props {
title: string; title: string;
body: string;
href: string; href: string;
target: string; target: string;
} }
const { href, target, title, body } = Astro.props; const { href, target, title} = Astro.props;
--- ---
<li class="link-card"> <li class="link-card">
@ -16,7 +15,7 @@ const { href, target, title, body } = Astro.props;
<span>&rarr;</span> <span>&rarr;</span>
</h2> </h2>
<p> <p>
{body} <slot />
</p> </p>
</a> </a>
</li> </li>

View File

@ -29,25 +29,37 @@ import Card from '../components/Card.astro';
<Card <Card
href="./inscription-newsletter" href="./inscription-newsletter"
title="Newsletter" title="Newsletter"
body="Tous nos évènements directement dans votre boite aux lettres !" >
/> Tous nos évènements directement dans votre boite aux lettres !
</Card>
<Card
title="Les Particules Fines"
href="/docs/flyer_cours_impro_adultes_debutant.e.s.pdf"
target="_blank"
>
Cours dimpro adultes débutant·e·s<br/>
<strong>Début des cours dessai en octobre !</strong>
</Card>
<Card <Card
href="mailto:contact@les-particules.org" href="mailto:contact@les-particules.org"
title="Contact" title="Contact"
body="Écrivez-nous" >
/> Écrivez-nous
</Card>
<Card <Card
href="https://www.facebook.com/LesParticules" href="https://www.facebook.com/LesParticules"
target="_blank" target="_blank"
title="Facebook" title="Facebook"
body="Retrouvez nous sur Facebook" >
/> Retrouvez-nous sur Facebook
</Card>
<Card <Card
href="https://www.instagram.com/les_particules/" href="https://www.instagram.com/les_particules/"
target="_blank" target="_blank"
title="Instagram" title="Instagram"
body="Retrouvez nous sur Instagram" >
/> Retrouvez-nous sur Instagram
</Card>
</ul> </ul>
</main> </main>
</Layout> </Layout>