Started on timeline

This commit is contained in:
BOTAlex 2024-02-27 10:26:04 +01:00
parent 3d36a59d36
commit 76e57d82c5
8 changed files with 764 additions and 67 deletions

View file

@ -0,0 +1,27 @@
<script lang="ts">
import HorizonalStack from "../Utils/HorizonalStack.svelte";
import Img from '@zerodevx/svelte-img'
import VerticalStack from "../Utils/VerticalStack.svelte";
// Set these when using the component
export let date: string = "null";
export let imagePath: string = "null";
export let title: string = "null";
export let desc: string = "null";
</script>
<div>
<title>{title}</title>
<HorizonalStack>
{#if imagePath !== "null"}
<Img src={imagePath}/>
{/if}
<VerticalStack>
</VerticalStack>
</HorizonalStack>
</div>
<style>
</style>