Files
netlify-nuxt-toolbox/pages/index.vue
2022-02-21 23:16:56 -05:00

17 lines
256 B
Vue

<template>
<feedback-form />
</template>
<script>
import FeedbackForm from '../components/FeedbackForm.vue'
export default {
name: 'IndexPage',
components: { FeedbackForm },
}
</script>
<style>
* {
font-family: 'Helvetica', sans-serif;
}
</style>