26 lines
768 B
Vue
26 lines
768 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
layout: 'blog'
|
|
})
|
|
|
|
const title = 'Estel Blog'
|
|
const description = 'Estel Blog'
|
|
|
|
useSeoMeta({
|
|
titleTemplate: '',
|
|
title,
|
|
ogTitle: title,
|
|
description,
|
|
ogDescription: description,
|
|
ogImage: 'https://assets.hub.nuxt.com/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1cmwiOiJodHRwczovL2RvY3MtdGVtcGxhdGUubnV4dC5kZXYiLCJpYXQiOjE3Mzk0NjM0MTd9.ltVAqPgKG38O01X1zl6MXfrJc55nf9OewXNFjpZ_2JY.jpg?theme=light',
|
|
twitterImage: 'https://assets.hub.nuxt.com/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1cmwiOiJodHRwczovL2RvY3MtdGVtcGxhdGUubnV4dC5kZXYiLCJpYXQiOjE3Mzk0NjM0MTd9.ltVAqPgKG38O01X1zl6MXfrJc55nf9OewXNFjpZ_2JY.jpg?theme=light'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<!-- <BlogHero /> -->
|
|
<BlogIndexBlog />
|
|
</div>
|
|
</template>
|