Prettier changes

This commit is contained in:
Neshura 2024-01-01 20:00:35 +01:00
parent 94a8d2a8e7
commit 9d5c6db7da
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
11 changed files with 556 additions and 526 deletions
src/routes/services

View file

@ -1,20 +1,19 @@
<svelte:options runes={true} />
<script lang="ts">
import pages from '$lib/components/pages.json';
import Card from "$lib/components/Card.svelte";
import pages from '$lib/components/pages.json';
import Card from '$lib/components/Card.svelte';
const services = $state(pages.services);
const services = $state(pages.services);
</script>
<svelte:head>
<title>Services</title>
<meta name="description" content="Overview of Services running on neshweb.net">
<title>Services</title>
<meta name="description" content="Overview of Services running on neshweb.net" />
</svelte:head>
<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>
<div class="flex h-full flex-row flex-wrap justify-center gap-10 overflow-auto p-8">
{#each services as service}
<Card {service} />
{/each}
</div>