refactor: replace header with div (#8204)

Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
This commit is contained in:
Arjun 2023-08-24 01:14:52 +05:30 committed by GitHub
parent 0eb7f19729
commit 85f2c2464c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,13 +8,13 @@ interface Props {
const { align = 'center', tagline, title } = Astro.props;
---
<header class:list={['hero stack gap-4', align]}>
<div class:list={['hero stack gap-4', align]}>
<div class="stack gap-2">
<h1 class="title">{title}</h1>
{tagline && <p class="tagline">{tagline}</p>}
</div>
<slot />
</header>
</div>
<style>
.hero {