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>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<main>
|
||||
<recent-talks/>
|
||||
</main>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Navbar from '@/components/navbar'
|
||||
import RecentTalks from '@/components/recent-talks'
|
||||
|
||||
export default {
|
||||
name: 'App',
|
||||
|
||||
components: {
|
||||
Navbar
|
||||
Navbar,
|
||||
RecentTalks
|
||||
},
|
||||
|
||||
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