i18n updates + HP + components

This commit is contained in:
Nico 2022-12-22 11:01:52 +01:00
parent 1ab35db47d
commit 23c79e579c
67 changed files with 1355 additions and 542 deletions

View file

@ -0,0 +1,15 @@
---
const { list, routeName } = Astro.props;
import CardEditorial from "./CardEditorial.astro";
---
<ul role="list">
{
list.map((item) => (
<li class="list__item">
<CardEditorial item={item} routeName={routeName} />
</li>
))
}
</ul>