Files
astroplate/src/layouts/partials/PageHeader.astro
T
2023-05-09 13:11:19 +06:00

18 lines
458 B
Plaintext

---
import Breadcrumbs from "@/components/Breadcrumbs.astro";
import { humanize } from "@/lib/utils/textConverter";
const { title } = Astro.props;
---
<section>
<div class="container text-center">
<div
class="rounded-2xl bg-gradient-to-b from-body to-theme-light px-8 py-14 dark:from-darkmode-body dark:to-darkmode-theme-light"
>
<h1 set:text={humanize(title)} />
<Breadcrumbs className="mt-6" />
</div>
</div>
</section>