mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
30 lines
No EOL
524 B
Svelte
30 lines
No EOL
524 B
Svelte
<script>
|
|
import { PUBLIC_SITE_URL } from '$env/static/public';
|
|
</script>
|
|
|
|
<footer>
|
|
<p>Bored Game © {new Date().getFullYear()}</p>
|
|
<p>Built by <a target="__blank" href="https://bradleyshellnut.com">Bradley Shellnut</a>
|
|
</p>
|
|
<p>{PUBLIC_SITE_URL}</p>
|
|
</footer>
|
|
|
|
<style lang="postcss">
|
|
footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
footer a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
@media (width < 640px) {
|
|
footer {
|
|
padding: 40px 0;
|
|
}
|
|
}
|
|
</style> |