swingmusic/src/components/WelcomeModal.vue
2023-01-13 18:13:49 +03:00

64 lines
1.1 KiB
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="welcome-to-alice">
<h3 class="t-center">
Welcome to
<span class="app-name">Alice</span>
<span class="release">0.1.0</span>
</h3>
<p>
Alice is a web based music player that is designed to provide a home 🏡
for all your local music files 💿.
</p>
<hr />
<p class="t-center">Let there be music!</p>
<hr />
<br />
<div class="bottom-banner">
<div class="creator t-center">
Designed and developed by
<span class="name"
><a href="https://github.com/geoffrey45">Geoffrey Mungai</a>
</span>
</div>
</div>
</div>
</template>
<script setup lang="ts"></script>
<style lang="scss">
.welcome-to-alice {
p {
line-height: 1.5rem;
}
hr {
border: none;
border-bottom: 1px $gray3 solid;
}
.app-name {
font-size: 1.5rem;
color: $red;
}
.release {
margin-left: $smaller;
font-size: 0.7rem;
color: $gray1;
}
.bottom-banner {
font-size: small;
margin-top: 1rem;
opacity: 0.4;
a {
color: $red;
cursor: pointer !important;
}
}
}
</style>