2022-12-22 10:55:17 +00:00
export default {
metaInfo ( ) {
const title = this . metaTitle ? ? 'OpnForm'
const description = this . metaDescription ? ? "Create beautiful forms for free. Unlimited fields, unlimited submissions. It's free and it takes less than 1 minute to create your first form."
const image = this . metaImage ? ? this . asset ( 'img/social-preview.jpg' )
2023-08-30 09:43:11 +00:00
const metaTemplate = this . metaTemplate ? ? '%s · OpnForm'
2022-12-22 10:55:17 +00:00
return {
title : title ,
2023-08-30 09:43:11 +00:00
titleTemplate : metaTemplate ,
2022-12-22 10:55:17 +00:00
meta : [
... ( this . metaTags ? ? [ ] ) ,
{ vmid : 'og:title' , property : 'og:title' , content : title } ,
{ vmid : 'twitter:title' , property : 'twitter:title' , content : title } ,
{ vmid : 'description' , name : 'description' , content : description } ,
{ vmid : 'og:description' , property : 'og:description' , content : description } ,
{ vmid : 'twitter:description' , property : 'twitter:description' , content : description } ,
{ vmid : 'twitter:image' , property : 'twitter:image' , content : image } ,
{ vmid : 'og:image' , property : 'og:image' , content : image }
]
}
}
}