feat: add new site

This commit is contained in:
Alexander Daichendt 2022-07-26 00:25:51 +02:00
parent 53738961bb
commit 532a32db68
27 changed files with 1198 additions and 1328 deletions

15
src/layouts/blog.svelte Normal file
View file

@ -0,0 +1,15 @@
<script context="module">
// @ts-ignore
import components from '../components';
const a = components.a;
export { a };
</script>
<script lang="ts">
// svelte-ignore unused-export-let
export let title;
// svelte-ignore unused-export-let
export let date;
</script>
<slot />