first commit

This commit is contained in:
Web-serfer 2026-03-28 16:51:42 +05:00
commit 7c46ee6909
107 changed files with 5563 additions and 0 deletions

View file

@ -0,0 +1,16 @@
---
const { title, description } = Astro.props
---
<div class="relative z-20 w-full mx-auto lg:mx-0">
<h1
class="text-2xl font-bold text-center tracking-tight text-neutral-900 dark:text-neutral-100 sm:text-3xl lg:text-4xl"
>
{title}
</h1>
<p
class="mt-3 text-sm leading-6 text-center text-neutral-600 dark:text-neutral-400 sm:mt-4 lg:mt-6 sm:leading-7 lg:leading-8 sm:text-base lg:text-lg"
>
{description}
</p>
</div>