2024-02-15 01:48:47 +00:00
|
|
|
<script>
|
|
|
|
|
import { PUBLIC_SITE_URL } from "$env/static/public";
|
|
|
|
|
</script>
|
|
|
|
|
|
2023-05-05 22:53:35 +00:00
|
|
|
<footer>
|
2024-02-15 01:48:47 +00:00
|
|
|
<p>Bored Game © {new Date().getFullYear()} | Built by <a target="__blank" href="https://bradleyshellnut.com">Bradley Shellnut</a> | {PUBLIC_SITE_URL}</p>
|
2023-05-05 22:53:35 +00:00
|
|
|
</footer>
|
|
|
|
|
|
|
|
|
|
<style lang="postcss">
|
|
|
|
|
footer {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
footer a {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 480px) {
|
|
|
|
|
footer {
|
|
|
|
|
padding: 40px 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|