mirror of
https://github.com/janishutz/MusicPlayer.git
synced 2026-09-10 14:25:24 +02:00
26 lines
521 B
Vue
26 lines
521 B
Vue
<template>
|
|
<div class="not-found-view">
|
|
<h1>404</h1>
|
|
<p>Page not found</p>
|
|
<RouterLink to="/" class="fancy-button">
|
|
Home
|
|
</RouterLink>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.not-found-view {
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
|
|
h1 {
|
|
font-size: 20vh;
|
|
line-height: 100%;
|
|
margin: 10px;
|
|
}
|
|
}
|
|
</style>
|