📝 (about) add an about page
This commit is contained in:
@@ -98,7 +98,7 @@
|
|||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<p>
|
<p>
|
||||||
This web app is clearly inspired by
|
This web app was inspired by
|
||||||
<a
|
<a
|
||||||
href="https://notes.andymatuschak.org/About_these_notes"
|
href="https://notes.andymatuschak.org/About_these_notes"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
@@ -115,6 +115,8 @@
|
|||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
>Julien</a
|
>Julien</a
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
<router-link :to="{ name: 'About' }">about</router-link>
|
||||||
</p>
|
</p>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,5 +1,39 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="about">
|
<div class="about content">
|
||||||
<h1>This is an about page</h1>
|
<h1 class="title is-1">Lite Note</h1>
|
||||||
|
<go-back />
|
||||||
|
<hr />
|
||||||
|
<main>
|
||||||
|
Work in progress:
|
||||||
|
<ol>
|
||||||
|
<li>offline notes ⏳</li>
|
||||||
|
<li>full path resolver between notes</li>
|
||||||
|
<li>draft & "note on the fly" folders</li>
|
||||||
|
<li>login with GitHub "Personal Access Token" tutorial</li>
|
||||||
|
<li>private & public notes tutorial</li>
|
||||||
|
<li>
|
||||||
|
custom settings:
|
||||||
|
<ul>
|
||||||
|
<li>light & dark modes</li>
|
||||||
|
<li>font families</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</main>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import GoBack from '@/components/GoBack.vue'
|
||||||
|
import { defineComponent } from 'vue'
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
components: { GoBack }
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.about {
|
||||||
|
padding: 1rem;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user