Skip to content

Commit 2be92e4

Browse files
(Final Commit for this PR). A link for both slack and opensource254/guidelines
1 parent c9b5a86 commit 2be92e4

File tree

2 files changed

+15
-40
lines changed

2 files changed

+15
-40
lines changed

components/Logo.vue

-40
This file was deleted.

layouts/default.vue

+15
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
role="button"
1616
href="#"
1717
style="filter: saturate(116%);"
18+
@click="showJoin = !showJoin"
1819
>join us</a
1920
></span
2021
>
@@ -24,6 +25,7 @@
2425
</div>
2526
<!-- End: Navigation with Button -->
2627
<nuxt />
28+
<JoinModal :show="showJoin" />
2729
<footer>
2830
<div class="row">
2931
<div class="col-sm-6 col-md-4 footer-navigation">
@@ -76,3 +78,16 @@
7678
</footer>
7779
</main>
7880
</template>
81+
<script>
82+
import JoinModal from '@/components/Modal'
83+
export default {
84+
components: {
85+
JoinModal
86+
},
87+
data() {
88+
return {
89+
showJoin: false
90+
}
91+
}
92+
}
93+
</script>

0 commit comments

Comments
 (0)