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

15 lines
439 B
Svelte
Raw Normal View History

<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>