2024-02-15 01:48:47 +00:00
|
|
|
<script>
|
2024-03-21 19:27:32 +00:00
|
|
|
import { PUBLIC_SITE_URL } from '$env/static/public';
|
2024-02-15 01:48:47 +00:00
|
|
|
</script>
|
|
|
|
|
|
2023-05-05 22:53:35 +00:00
|
|
|
<footer>
|
2024-03-21 19:27:32 +00:00
|
|
|
<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>
|
2023-05-05 22:53:35 +00:00
|
|
|
</footer>
|
|
|
|
|
|
|
|
|
|
<style lang="postcss">
|
2024-03-21 19:27:32 +00:00
|
|
|
footer {
|
2023-05-05 22:53:35 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
2024-03-21 19:27:32 +00:00
|
|
|
gap: 0.25rem;
|
2023-05-05 22:53:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
footer a {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-21 19:27:32 +00:00
|
|
|
@media (width < 640px) {
|
2023-05-05 22:53:35 +00:00
|
|
|
footer {
|
|
|
|
|
padding: 40px 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|