main-site/src/routes/services/+page.svelte

17 lines
483 B
Svelte
Raw Normal View History

2024-01-01 18:40:02 +01:00
<svelte:options runes={true} />
<script lang="ts">
import pages from '$lib/components/pages.json';
import Card from "$lib/components/Card.svelte";
2024-01-01 18:40:02 +01:00
const services = $state(pages.services);
</script>
<title>Services</title>
<meta name="description" content="Overview of Services running on neshweb.net">
<div class="flex flex-row flex-wrap justify-center gap-10 p-8 overflow-auto h-full">
{#each services as service}
2024-01-01 18:40:02 +01:00
<Card bind:service />
{/each}
</div>