about summary refs log tree commit diff
path: root/pages
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-08-30 10:08:13 +0200
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-08-30 10:08:13 +0200
commit768b047e89f419deca3ddd00af7cb75209de97b6 (patch)
tree2e94259cc97a4370897278b6845ce5a7ddf31629 /pages
parentcef8ab49453e4ce8a2e19de4e27862b059f7d9d9 (diff)
downloadpuszcza-768b047e89f419deca3ddd00af7cb75209de97b6.tar.gz
puszcza-768b047e89f419deca3ddd00af7cb75209de97b6.zip
Move to nuxtjs
Diffstat (limited to 'pages')
-rw-r--r--pages/404.vue6
-rw-r--r--pages/README.md6
-rw-r--r--pages/download.vue18
-rw-r--r--pages/index.vue16
-rw-r--r--pages/kontakt.vue13
-rw-r--r--pages/o-nas.vue3
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