parent
d8dba19353
commit
a0d16eb8db
3 changed files with 42 additions and 3 deletions
src/routes/services
|
@ -0,0 +1,15 @@
|
|||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue