diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-10-12 21:20:38 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-10-12 21:20:38 +0200 |
commit | 8a11123d85540c222804bfb07187079f5c08217b (patch) | |
tree | 82df74079e3a075957a216e582e19995a12e2136 | |
parent | 7204f6a7707a5d348fac16e754ece43d160ef28c (diff) | |
download | puszcza-8a11123d85540c222804bfb07187079f5c08217b.tar.gz puszcza-8a11123d85540c222804bfb07187079f5c08217b.zip |
JoinUs component
-rw-r--r-- | components/JoinUs.vue | 2 | ||||
-rw-r--r-- | pages/index.vue | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/components/JoinUs.vue b/components/JoinUs.vue index 65431fa..13c7188 100644 --- a/components/JoinUs.vue +++ b/components/JoinUs.vue @@ -4,7 +4,7 @@ <div class="title"> <div class="text">Rozpocznij swoją harcerską przygodę!</div> </div> - <plain-button @click="$router.push('/kontakt')" text="Dołącz do nas" /> + <plain-button @click="$router.push('/nabor')" text="Dołącz do nas" /> </div> </section> </template> diff --git a/pages/index.vue b/pages/index.vue index 2f93914..a801653 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -1,11 +1,11 @@ <template> <div> - <oboz-widget /> + <join-us /> <div style="width: 100%; padding-top: 50px"> <h1>Ostatnie wpisy z kroniki</h1> <post-list :posts="posts" :max="4" /> </div> - <join-us /> + <oboz-widget /> <facebook-feed /> </div> </template> |