feat: add error page

This commit is contained in:
kmacoders
2021-06-28 01:07:31 +07:00
parent f79c2f5031
commit 7eb7e72c55
6 changed files with 135 additions and 3 deletions

View File

@@ -1,13 +1,18 @@
<template>
<div>
Contact
<contact-form />
</div>
</template>
<script>
import { Vue, Component } from 'nuxt-property-decorator'
import ContactForm from '@/components/templates/contact-us/ContactForm'
@Component
@Component({
components: {
ContactForm
}
})
export default class ContactUs extends Vue {
}
</script>

View File

@@ -1,6 +1,10 @@
<template>
<div>
<banner />
<banner />
<banner />
<banner />
<banner />
</div>
</template>