You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
723 B
38 lines
723 B
<script lang="ts">
|
|
// import { navigate } from 'svelte-routing';
|
|
|
|
// function handleMatchmakingClick() {
|
|
// navigate('/matchmaking');
|
|
// }
|
|
|
|
// function handlePlayWithFriendClick() {
|
|
// navigate('/play-with-friend');
|
|
// }
|
|
</script>
|
|
|
|
<!-- dr -->
|
|
<main>
|
|
<h1>Choose a gamemode</h1>
|
|
<!-- <button on:click={handleMatchmakingClick}>Matchmaking</button>
|
|
<button on:click={handlePlayWithFriendClick}>Play with a friend</button> -->
|
|
<button>Matchmaking</button>
|
|
<button>Play with a friend</button>
|
|
</main>
|
|
|
|
<style>
|
|
main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
button {
|
|
font-size: 1.5rem;
|
|
padding: 1rem 2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
</style>
|
|
|