Added services page with unfinished service card element

This commit is contained in:
Neshura 2024-01-01 07:07:55 +01:00
parent 0d1f4cd766
commit 6c2f29afa6
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
3 changed files with 42 additions and 3 deletions
src/routes

View file

@ -1,8 +1,8 @@
<script lang="ts">
import {page} from "$app/stores";
import { Button } from "$lib/components/ui/button"
import {page} from "$app/stores";
import { Button } from "$lib/components/ui/button";
const button = "border-t-2 bg-black/50 hover:bg-black/70 hover:border-primary w-28";
const button = "border-t-2 bg-black/55 hover:bg-black/70 hover:border-primary w-28";
</script>

View file

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