mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 18:59:59 +01:00
26 lines
391 B
Vue
26 lines
391 B
Vue
<script lang="ts" setup>
|
|
defineProps({
|
|
title: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
description: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<h1
|
|
class="text-2xl font-bold tracking-tight text-zinc-800 dark:text-zinc-100"
|
|
>
|
|
{{ title }}
|
|
</h1>
|
|
<p class="mt-6 text-base">
|
|
{{ description }}
|
|
</p>
|
|
</div>
|
|
</template>
|