Initial Docs (#39)

This commit is contained in:
Ollie Taylor
2023-07-09 22:18:06 +01:00
committed by GitHub
parent 9232f4d52e
commit e01855b89b
51 changed files with 3056 additions and 613 deletions
@@ -0,0 +1,11 @@
<script lang="ts">
import Anchor from './anchor.svelte';
export let title: string;
export let subtitle: string | undefined = undefined;
</script>
<h3 class="text-xl font-medium leading-relaxed text-mono-900"><Anchor value={title} /></h3>
{#if subtitle}
<p class="text-xl font-normal leading-normal text-mono-500">{subtitle}</p>
{/if}