blob: 33bfd83253026ce9ef490c6d5de29ff62db91f30 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<template>
<div>
<InterestsHero />
<InterestsListing />
</div>
</template>
<script lang="ts">
import InterestsHero from '~/components/ui/interests/InterestsHero.vue'
import InterestsListing from '~/components/ui/interests/InterestsListing.vue'
export default {
head: {
title: 'interests | yucky! aiming'
},
components: {
InterestsHero,
InterestsListing
}
}
</script>
|