fgo-ta-com-website/src/components/hero.astro

35 lines
677 B
Text
Raw Normal View History

2023-07-17 21:34:53 +00:00
---
---
<div>
<span>
This site is a WIP project by Firq.
<br />
In the future, it will be used to catalogue information around FGO TA and the
game in general.
<br />
<a href="https://firq.dev" target="_blank" rel="noopener noreferrer">Feel free to check out my own site.</a>
</span>
<slot />
</div>
<style>
div {
display: flex;
width: 100%;
height: 5em;
background-color: var(--c-gray);
text-align: center;
align-items: center;
justify-content: center;
color: white;
font-size: 1.5em;
padding: 2rem 0rem;
margin-top: 7.5rem;
}
a {
text-align: center;
text-decoration: none;
}
</style>