- Migrates the site to Svelte 5 - Still generates a static site with inlined critical path CSS for the ultimate in performance - Opens up future possibilities for site growth Reviewed-on: #1 Co-authored-by: mifi <badmf@mifi.dev> Co-committed-by: mifi <badmf@mifi.dev>
15 lines
437 B
Svelte
15 lines
437 B
Svelte
<script lang="ts">
|
|
import { whatWeDoItems } from '$lib/data/content';
|
|
</script>
|
|
|
|
<section id="what-we-do" class="section" aria-labelledby="what-we-do-heading">
|
|
<div class="container">
|
|
<h2 id="what-we-do-heading" class="section-title">What We Do</h2>
|
|
<ul class="content-list">
|
|
{#each whatWeDoItems as item (item)}
|
|
<li>{item}</li>
|
|
{/each}
|
|
</ul>
|
|
</div>
|
|
</section>
|