Initial commit

This commit is contained in:
ponzischeme89
2026-05-02 08:26:18 +12:00
commit b7ea05f150
119 changed files with 13641 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<script lang="ts">
import Icon from '$lib/components/Icon.svelte';
import type { IconCard } from '$lib/types';
export let values: IconCard[];
</script>
<section id="values">
<div class="values-inner">
<h2 class="section-heading">Where dogs come first</h2>
<div class="values-grid">
{#each values as value}
<div class="value-card">
<Icon name={value.icon} className="value-card-icon" />
<h3>{value.title}</h3>
<p>{value.body}</p>
</div>
{/each}
</div>
</div>
</section>