Add recent talks component
This commit is contained in:
parent
2b3cb1aea2
commit
e7d1ba234f
|
@ -8,17 +8,23 @@
|
||||||
<p class="mt-5 text-sm">{{ description }}</p>
|
<p class="mt-5 text-sm">{{ description }}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<recent-talks/>
|
||||||
|
</main>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Navbar from '@/components/navbar'
|
import Navbar from '@/components/navbar'
|
||||||
|
import RecentTalks from '@/components/recent-talks'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'App',
|
name: 'App',
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
Navbar
|
Navbar,
|
||||||
|
RecentTalks
|
||||||
},
|
},
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
|
|
13
src/components/recent-talks/index.vue
Normal file
13
src/components/recent-talks/index.vue
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<template>
|
||||||
|
<section class="py-4">
|
||||||
|
<div class="mx-auto px-4">
|
||||||
|
<h2 class="text-2xl font-bold uppercase text-center">Recent Talks</h2>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'RecentTalks'
|
||||||
|
}
|
||||||
|
</script>
|
Loading…
Reference in a new issue