add: more lp stuff

Added timeline to LP
This commit is contained in:
Fiona Lena Urban 2025-05-22 10:39:06 +02:00
parent c7286a60da
commit 0a71a62af8
8 changed files with 113 additions and 5 deletions

View file

@ -0,0 +1,19 @@
<template>
<article class="TimelineCard">
<Icon class="icon" :name="icon" mode="svg" />
<div class="text">
<strong>{{ title }}</strong>
<p>{{ description }}</p>
</div>
</article>
</template>
<script setup lang="ts">
type Props = {
icon: string
title: string
description: string
}
defineProps<Props>()
</script>