feat: ajout annonce particules fines
parent
758f9483ea
commit
bbe246f9f5
Binary file not shown.
|
@ -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>→</span>
|
<span>→</span>
|
||||||
</h2>
|
</h2>
|
||||||
<p>
|
<p>
|
||||||
{body}
|
<slot />
|
||||||
</p>
|
</p>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -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 d’impro adultes débutant·e·s<br/>
|
||||||
|
<strong>Début des cours d’essai 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>
|
||||||
|
|
Loading…
Reference in New Issue