Makes the navbar and layout clicks

This commit is contained in:
2023-08-14 21:38:34 +02:00
parent 3cc52e37b2
commit 28e118c5ec
14 changed files with 270 additions and 130 deletions

View File

@@ -8,7 +8,9 @@
const component = getServiceComponent(service.type || '');
</script>
<p>{service.title}</p>
{#if component != undefined}
<svelte:component this={component} {data} />
{/if}
<div class="service-card">
<p>{service.title}</p>
{#if component != undefined}
<svelte:component this={component} {data} />
{/if}
</div>