initial commit

This commit is contained in:
2026-07-14 22:02:24 +03:00
parent a80849829a
commit 6453730766
2783 changed files with 6055 additions and 238 deletions
+19
View File
@@ -0,0 +1,19 @@
---
interface Props {
label: string;
title: string;
highlight?: string;
sub?: string;
center?: boolean;
}
const { label, title, highlight, sub, center = true } = Astro.props;
---
<div class:list={['reveal mb-12', { 'text-center': center }]}>
<span class="section-label" class:list={[{ 'justify-center': center }]}>{label}</span>
<h2 class="section-title">
{title}{highlight && <span class="text-gradient"> {highlight}</span>}
</h2>
{sub && <p class:list={['section-sub', { 'mx-auto': center }]}>{sub}</p>}
</div>