2025-10-20 08:57:51 +02:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
interface Props {
|
|
|
|
|
title: string;
|
|
|
|
|
description?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
defineProps<Props>();
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="mb-8 space-y-0.5">
|
2026-02-17 10:35:03 +01:00
|
|
|
<h2 class="text-lg text-primary font-semibold">{{ title }}</h2>
|
|
|
|
|
<p v-if="description" class="text-muted-foreground">
|
2025-10-20 08:57:51 +02:00
|
|
|
{{ description }}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|