mirror of
https://github.com/Xevion/undefined.behavio.rs.git
synced 2025-12-14 02:13:35 -06:00
Extract header into component, specify general 'RSS' instead of 'Atom' feeds
This commit is contained in:
13
src/components/Header.astro
Normal file
13
src/components/Header.astro
Normal 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>
|
||||
Reference in New Issue
Block a user