2022-10-02 18:38:41 +00:00
|
|
|
<template>
|
2023-09-08 11:00:28 +00:00
|
|
|
<div class="flex flex-col min-h-full border-t">
|
|
|
|
<section class="py-12 sm:py-16 bg-gray-50 border-b border-gray-200">
|
|
|
|
<div class="px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
|
|
|
|
<div class="text-center max-w-xl mx-auto">
|
|
|
|
<h1 class="text-3xl sm:text-4xl lg:text-5xl font-bold tracking-tight text-gray-900">
|
|
|
|
Form Templates
|
|
|
|
</h1>
|
|
|
|
<p class="text-gray-600 mt-4 text-lg font-normal">
|
|
|
|
Our collection of beautiful templates to create your own forms!
|
|
|
|
</p>
|
2022-10-02 18:38:41 +00:00
|
|
|
</div>
|
2023-09-08 11:00:28 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
2023-10-13 10:11:03 +00:00
|
|
|
<templates-list />
|
2023-09-08 11:00:28 +00:00
|
|
|
|
2022-10-02 18:38:41 +00:00
|
|
|
<open-form-footer class="mt-8 border-t"/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-01-21 11:57:37 +00:00
|
|
|
import OpenFormFooter from '../../components/pages/OpenFormFooter.vue'
|
2023-10-13 10:11:03 +00:00
|
|
|
import TemplatesList from '../../components/pages/templates/TemplatesList.vue'
|
|
|
|
import SeoMeta from '../../mixins/seo-meta.js'
|
2022-10-02 18:38:41 +00:00
|
|
|
|
|
|
|
export default {
|
2023-04-12 10:59:55 +00:00
|
|
|
|
2023-10-13 10:11:03 +00:00
|
|
|
components: { OpenFormFooter, TemplatesList },
|
2023-09-08 11:00:28 +00:00
|
|
|
mixins: [SeoMeta],
|
2022-10-02 18:38:41 +00:00
|
|
|
|
|
|
|
props: {
|
2023-09-08 11:00:28 +00:00
|
|
|
metaTitle: { type: String, default: 'Templates' },
|
|
|
|
metaDescription: { type: String, default: 'Our collection of beautiful templates to create your own forms!' }
|
2022-10-02 18:38:41 +00:00
|
|
|
},
|
|
|
|
|
2023-09-08 11:00:28 +00:00
|
|
|
data () {
|
2023-10-13 10:11:03 +00:00
|
|
|
return {}
|
2023-09-08 11:00:28 +00:00
|
|
|
},
|
|
|
|
|
2023-10-13 10:11:03 +00:00
|
|
|
mounted () {},
|
2023-09-08 11:00:28 +00:00
|
|
|
|
2023-10-13 10:11:03 +00:00
|
|
|
computed: {},
|
2023-09-08 11:00:28 +00:00
|
|
|
|
|
|
|
methods: {}
|
2022-10-02 18:38:41 +00:00
|
|
|
}
|
|
|
|
</script>
|