diff options
Diffstat (limited to 'components/JoinUs.vue')
-rw-r--r-- | components/JoinUs.vue | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/components/JoinUs.vue b/components/JoinUs.vue index 6ffec91..d8bfadf 100644 --- a/components/JoinUs.vue +++ b/components/JoinUs.vue @@ -4,13 +4,22 @@ <div class="title"> <div class="text">Rozpocznij swoją harcerską przygodę!</div> </div> - <div class="button"> - <nuxt-link to="/kontakt">Dołącz do nas!</nuxt-link> - </div> + <plain-button @click="$router.push('/kontakt')" text="Dołącz do nas" /> </div> </section> </template> +<script> +import PlainButton from './Buttons/PlainButton' + +export default { + name: 'JoinUs', + components: { + PlainButton + } +} +</script> + <style scoped> .joinus { width: 100%; |