Extract header into component, specify general 'RSS' instead of 'Atom' feeds

This commit is contained in:
2023-11-27 20:04:18 -06:00
parent 3f3a3a4855
commit db25fa0a97
2 changed files with 17 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
---
interface Props {
className?: string | null;
}
const { className } = Astro.props;
---
<header class:list={["text-5xl text-center lowercase", className]}>
<div class="stack" style="--stacks: 3;">
<span style="--index: 0;">undefined behaviors</span>
<span style="--index: 1;">undefined behaviors</span>
<span style="--index: 2;">undefined behaviors</span>
</div>
</header>