diff options
| author | Fuwn <[email protected]> | 2021-01-21 19:19:46 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-01-21 19:19:46 -0800 |
| commit | 64537f8850fe00b759f258999f33ffd0ad8c08d6 (patch) | |
| tree | 8c8a5f32a75f1318c49ca33b0e279780c9896008 /pages | |
| parent | :sa: (diff) | |
| download | me-64537f8850fe00b759f258999f33ffd0ad8c08d6.tar.xz me-64537f8850fe00b759f258999f33ffd0ad8c08d6.zip | |
:star:
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/README.md | 6 | ||||
| -rw-r--r-- | pages/contacts.vue | 11 | ||||
| -rw-r--r-- | pages/index.vue | 15 | ||||
| -rw-r--r-- | pages/interests.vue | 14 | ||||
| -rw-r--r-- | pages/skills.vue | 14 |
5 files changed, 60 insertions, 0 deletions
diff --git a/pages/README.md b/pages/README.md new file mode 100644 index 0000000..1d5d48b --- /dev/null +++ b/pages/README.md @@ -0,0 +1,6 @@ +# PAGES + +This directory contains your Application Views and Routes. +The framework reads all the `*.vue` files inside this directory and creates the router of your application. + +More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing). diff --git a/pages/contacts.vue b/pages/contacts.vue new file mode 100644 index 0000000..e1c6ffc --- /dev/null +++ b/pages/contacts.vue @@ -0,0 +1,11 @@ +<template> + <ExtraComingSoon /> +</template> + +<script> +export default { + head: { + title: 'interests | fuwn' + } +} +</script> diff --git a/pages/index.vue b/pages/index.vue new file mode 100644 index 0000000..843b0b4 --- /dev/null +++ b/pages/index.vue @@ -0,0 +1,15 @@ +<template> + <div> + <HomeHero /> + </div> +</template> + +<script lang="ts"> +import Vue from 'vue' + +export default Vue.extend({ + head: { + title: 'home | fuwn' + } +}) +</script> diff --git a/pages/interests.vue b/pages/interests.vue new file mode 100644 index 0000000..1023ebb --- /dev/null +++ b/pages/interests.vue @@ -0,0 +1,14 @@ +<template> + <div> + <InterestsHero /> + <InterestsListing /> + </div> +</template> + +<script lang="ts"> +export default { + head: { + title: 'interests | fuwn' + } +} +</script> diff --git a/pages/skills.vue b/pages/skills.vue new file mode 100644 index 0000000..67610ba --- /dev/null +++ b/pages/skills.vue @@ -0,0 +1,14 @@ +<template> + <div> + <SkillsHero /> + <SkillsListing /> + </div> +</template> + +<script lang="ts"> +export default { + head: { + title: 'skills | fuwn' + } +} +</script> |