2024-01-01 07:07:55 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import pages from '$lib/components/pages.json';
|
|
|
|
import Card from "$lib/components/Card.svelte";
|
|
|
|
|
|
|
|
const services = 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}
|
|
|
|
<Card {service} />
|
|
|
|
{/each}
|
|
|
|
</div>
|