2024-03-29 22:52:42 +00:00
|
|
|
<style>
|
|
|
|
.navbar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
2024-03-29 23:09:03 +00:00
|
|
|
|
2024-03-29 23:00:35 +00:00
|
|
|
button {
|
|
|
|
margin-left: 1rem;
|
2024-03-29 23:09:03 +00:00
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #076836;
|
|
|
|
color: white;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: background-color 0.3s ease;
|
|
|
|
box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
button:hover {
|
|
|
|
background-color: #074b28;
|
2024-03-29 23:00:35 +00:00
|
|
|
}
|
2024-03-29 22:52:42 +00:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
function navHome() {
|
|
|
|
window.location.href = '/';
|
|
|
|
|
|
|
|
}
|
|
|
|
function navLog() {
|
|
|
|
window.location.href = '/log';
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="navbar">
|
|
|
|
|
2024-03-29 23:09:03 +00:00
|
|
|
<h2>AdventureLog 🗺️</h2>
|
2024-03-29 22:52:42 +00:00
|
|
|
<button on:click={navHome}>Home</button>
|
|
|
|
<button on:click={navLog}>Log</button>
|
|
|
|
<hr>
|
|
|
|
<br>
|
|
|
|
</div>
|