|
<template>
|
|
<h1 :id="parseId(id)" class="text-5xl font-thin mt-3 mb-8 first:pt-0 pt-2 relative lg:right-8 sm:right-4 right-2">
|
|
<slot />
|
|
</h1>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { parseId } from '#shared/general.util';
|
|
const props = defineProps<{ id?: string }>()
|
|
</script>
|