parent
a0d16eb8db
commit
dc04b71304
3 changed files with 71 additions and 27 deletions
src/routes/services
|
@ -1,8 +1,10 @@
|
|||
<svelte:options runes={true} />
|
||||
|
||||
<script lang="ts">
|
||||
import pages from '$lib/components/pages.json';
|
||||
import Card from "$lib/components/Card.svelte";
|
||||
|
||||
const services = pages.services;
|
||||
const services = $state(pages.services);
|
||||
</script>
|
||||
|
||||
<title>Services</title>
|
||||
|
@ -10,6 +12,6 @@
|
|||
|
||||
<div class="flex flex-row flex-wrap justify-center gap-10 p-8 overflow-auto h-full">
|
||||
{#each services as service}
|
||||
<Card {service} />
|
||||
<Card bind:service />
|
||||
{/each}
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue