File size: 625 Bytes
de10f77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
012a5bd
de10f77
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<script lang="ts">
	import Picture from '$lib/components/Picture.svelte';
	import type { PageData } from './$types';

	export let data: PageData;
</script>

<a href="/admin/produits/nouveau" class="link">Nouveau produit</a>

<h1 class="text-sunray mt-10">Liste des produits</h1>

<div class="flex flex-row flex-wrap gap-6 mt-6">
	{#each data.products as product}
		<div class="flex flex-col text-center">
			<a href="/admin/produits/{product._id}" class="flex flex-col items-center">
				<Picture picture={product.photos[0]} class="h-36 block" />
				<span class="mt-2">{product.name}</span>
			</a>
		</div>
	{/each}
</div>