diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/404.vue | 6 | ||||
-rw-r--r-- | pages/README.md | 6 | ||||
-rw-r--r-- | pages/download.vue | 18 | ||||
-rw-r--r-- | pages/index.vue | 16 | ||||
-rw-r--r-- | pages/kontakt.vue | 13 | ||||
-rw-r--r-- | pages/o-nas.vue | 3 |
6 files changed, 62 insertions, 0 deletions
diff --git a/pages/404.vue b/pages/404.vue new file mode 100644 index 0000000..3292f65 --- /dev/null +++ b/pages/404.vue @@ -0,0 +1,6 @@ +<template> + <div> + <h1>404</h1> + <p>Nie znaleziono strony</p> + </div> +</template> \ No newline at end of file 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/download.vue b/pages/download.vue new file mode 100644 index 0000000..dd6b507 --- /dev/null +++ b/pages/download.vue @@ -0,0 +1,18 @@ +<template> + <div class="container"> + <h1>Do pobrania</h1> + <a class="link" href="/files/Karta_próby_na_sprawność.pdf">Karta próby na sprawność</a> + <a class="link" href="/files/Próba_Harcerza.pdf">Próba Harcerza</a> + </div> +</template> + +<style scoped> +.container { + display: flex; + flex-direction: column; +} + +.link { + margin: 5px; +} +</style> \ No newline at end of file diff --git a/pages/index.vue b/pages/index.vue new file mode 100644 index 0000000..736e7f4 --- /dev/null +++ b/pages/index.vue @@ -0,0 +1,16 @@ +<template> + <div> + <JoinUs /> + <FacebookFeed /> + </div> +</template> + +<script> +import JoinUs from "../components/JoinUs.vue"; +import FacebookFeed from "../components/FacebookFeed.vue"; + +export default { + name: "HomeView", + components: { JoinUs, FacebookFeed } +}; +</script> \ No newline at end of file diff --git a/pages/kontakt.vue b/pages/kontakt.vue new file mode 100644 index 0000000..cffe8be --- /dev/null +++ b/pages/kontakt.vue @@ -0,0 +1,13 @@ +<template> + <div> + <h1>Kontakt z drużynowym</h1> + <p> + tel: + <a href="tel:+48695516492">+48695516492</a> + </p> + <p> + email: + <a href="mailto:patryk.niedzwiedzinski@zhr.pl">patryk.niedzwiedzinski@zhr.pl</a> + </p> + </div> +</template> \ No newline at end of file diff --git a/pages/o-nas.vue b/pages/o-nas.vue new file mode 100644 index 0000000..2455cec --- /dev/null +++ b/pages/o-nas.vue @@ -0,0 +1,3 @@ +<template> + <h1>O nas</h1> +</template> \ No newline at end of file |