mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 17:04:15 +00:00
31 lines
533 B
Text
31 lines
533 B
Text
---
|
|
import { Container } from './container';
|
|
---
|
|
|
|
<footer class="footer">
|
|
<Container>
|
|
<p>
|
|
Created by <a href="https://twitter.com/remvze">Maze ✦</a>
|
|
</p>
|
|
</Container>
|
|
</footer>
|
|
|
|
<style>
|
|
.footer {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 100px;
|
|
|
|
& p {
|
|
font-size: var(--font-sm);
|
|
color: var(--color-foreground-subtle);
|
|
text-align: center;
|
|
|
|
& a {
|
|
font-weight: 500;
|
|
color: var(--color-foreground);
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
</style>
|