<template>
<h1 :id="parseId(id)" class="text-3xl font-semibold my-3 first:pt-0 pt-2">
<slot />
</h1>
</template>
<script setup lang="ts">
const props = defineProps<{ id?: string }>()
</script>