2026-02-25 09:58:14 +03:00
|
|
|
<!--
|
|
|
|
|
Component: SectionTitle
|
|
|
|
|
Styled title for page section
|
|
|
|
|
-->
|
|
|
|
|
<script lang="ts">
|
|
|
|
|
interface Props {
|
2026-03-02 22:19:35 +03:00
|
|
|
/**
|
|
|
|
|
* Title text
|
|
|
|
|
*/
|
2026-02-25 09:58:14 +03:00
|
|
|
text?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const { text }: Props = $props();
|
|
|
|
|
</script>
|
|
|
|
|
{#if text}
|
|
|
|
|
<h2 class="text-3xl md:text-4xl lg:text-5xl font-['Space_Grotesk'] font-bold text-[#1a1a1a] dark:text-[#e5e5e5] tracking-tight">
|
|
|
|
|
{text}
|
|
|
|
|
</h2>
|
|
|
|
|
{/if}
|