feat: projects
All checks were successful
Release / publish (push) Successful in 1m31s

This commit is contained in:
2025-10-21 11:20:54 +02:00
parent 12d1fd70ac
commit 11f4393ccf
4 changed files with 73 additions and 26 deletions

View File

@@ -0,0 +1,9 @@
<script lang="ts">
import ArtefactsView from '$lib/components/ArtefactsView.svelte';
import { page } from '$app/stores';
import { state } from '$lib/view.svelte';
let project = state.projects.find(({ uuid }) => $page.params.project == uuid);
</script>
<h1>Project Overview: {project?.name}</h1>
<ArtefactsView view={state.view} />