changed the whole structure

This commit is contained in:
2023-10-01 03:34:35 +02:00
parent 99dc9d3e93
commit e32b25845e
40 changed files with 7489 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<section id="home"
class="relative overflow-hidden z-10 pt-[120px] pb-[110px] md:pt-[150px] md:pb-[120px] xl:pt-[180px] xl:pb-[160px] 2xl:pt-[210px] 2xl:pb-[200px]">
<div class="container">
<div class="flex flex-wrap mx-[-16px]">
<div class="w-full px-4">
<table class="text-center">
<!-- Statistiques -->
<tr>
<th>Article 1</th>
<th>Article 2</th>
</tr>
<tbody>
{{#each historiqueData }}
<tr>
<td>{{this.article1}}</td>
<td>{{this.article2}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</div>
</div>
</section>