firq-dev-website/src/components/hero.astro

23 lines
393 B
Text
Raw Normal View History

2023-03-04 12:48:57 +00:00
---
---
<div>
2023-03-09 10:44:18 +00:00
This is still a work in progress and continuously expanded. Feel free to look
around.
<slot />
2023-03-04 12:48:57 +00:00
</div>
<style>
2023-03-09 10:44:18 +00:00
div {
display: flex;
width: 100%;
height: 5em;
2024-10-24 16:52:33 +00:00
background-color: var(--c-secondary-background);
2023-03-09 10:44:18 +00:00
text-align: center;
align-items: center;
justify-content: center;
2024-10-24 16:52:33 +00:00
color: var(--c-primary-text);
2023-03-09 10:44:18 +00:00
font-size: 1.5em;
}
</style>