feature/project-redesign #28

Merged
ilia merged 88 commits from feature/project-redesign into main 2026-03-02 19:46:39 +00:00
Showing only changes of commit bd480f9592 - Show all commits

View File

@@ -0,0 +1,16 @@
<!--
Component: SectionTitle
Styled title for page section
-->
<script lang="ts">
interface Props {
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}