<template>
<h1 class="text-4xl text-yellow-50 mb-5"> {{ title }} </h1>
</template>
<script lang="ts" setup>
defineProps({
title: String
})
</script>