first commit
This commit is contained in:
commit
7c46ee6909
107 changed files with 5563 additions and 0 deletions
16
frontend/src/components/base/PageHeading.astro
Normal file
16
frontend/src/components/base/PageHeading.astro
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue