parent
94a8d2a8e7
commit
9d5c6db7da
11 changed files with 556 additions and 526 deletions
src/routes/services
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue