💄 (about) better design and a welcom page.
This commit is contained in:
@@ -1,16 +1,104 @@
|
||||
<template>
|
||||
<div class="welcome-world"></div>
|
||||
<div class="welcome-world">
|
||||
<h1 class="title is-1">About "Lite notes"</h1>
|
||||
|
||||
<ol>
|
||||
<li>
|
||||
Take notes on VS code (<a
|
||||
href="https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one#review-details"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>this extension</a
|
||||
>
|
||||
may be necessary)
|
||||
</li>
|
||||
<li>
|
||||
Push to GitHub
|
||||
</li>
|
||||
<li>
|
||||
Read it here
|
||||
</li>
|
||||
<li>
|
||||
Share it with an URL
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
<form @submit.prevent>
|
||||
<div class="columns is-mobile is-centered is-vcentered">
|
||||
https://github.com/
|
||||
<div class="column">
|
||||
<div class="field">
|
||||
<div class="control">
|
||||
<input
|
||||
class="input"
|
||||
type="text"
|
||||
v-model="userInput"
|
||||
placeholder="user"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
/
|
||||
<div class="column">
|
||||
<div class="field">
|
||||
<div class="control">
|
||||
<input
|
||||
class="input"
|
||||
type="text"
|
||||
v-model="repoInput"
|
||||
placeholder="repo"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column">
|
||||
<button type="submit" class="button is-primary" @click="submit">
|
||||
go
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
This web app is clearly inspired by
|
||||
<a
|
||||
href="https://notes.andymatuschak.org/About_these_notes"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>Andy Matuschak's website</a
|
||||
>. May this app be useful to everyone.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Made with love by
|
||||
<a
|
||||
href="http://github.com/jcalixte"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>Julien</a
|
||||
>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue'
|
||||
import { useForm } from '@/hooks/useForm.hook'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'WelcomeWord'
|
||||
name: 'WelcomeWord',
|
||||
setup() {
|
||||
return { ...useForm() }
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.welcome-world {
|
||||
margin: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user