added notches and footer

This commit is contained in:
2025-04-04 19:00:47 +02:00
parent 060b66a1be
commit 6a1a184b7b
11 changed files with 75 additions and 16 deletions

View File

@@ -4,6 +4,7 @@
import type { Project } from './projects';
import { projects } from './projects';
import { browser } from '$app/environment';
import LinkList from "$lib/link-list.svelte";
let getActiveProjects = function(projects: Project[], isActive: boolean): Project[] {
var result: Project[] = [];
@@ -57,11 +58,7 @@
{#each project.paragraphs as paragraph}
<p>{@html paragraph}</p>
{/each}
<ul>
{#each project.links as link}
<li><a href="{link.link}">{@html link.text}</a></li>
{/each}
</ul>
<LinkList entries={project.links} />
</div>
{/snippet}