Files
Cloud-Blog/pages/index.vue
nurRiyad d3c28af301 Fix title issue and seo data
Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
2024-06-27 00:26:45 +06:00

31 lines
714 B
Vue

<script lang="ts" setup>
import { navbarData } from '~/data'
useHead({
title: 'Home',
meta: [
{
name: 'description',
content:
'Welcome To My Blog Site. Get Web Development, Javascript, Typescript, NodeJs, Vue, and Nuxt, Related Articles, Tips, Learning resources and more.',
},
],
})
// Generate OG Image
defineOgImageComponent('About', {
headline: 'Greetings 👋',
title: navbarData.homeTitle,
description: 'Dive into web development with me and learn Js, Ts, Vue, Nuxt, Docker, k8s',
link: '/riyad.jpg',
})
</script>
<template>
<main class="container max-w-5xl mx-auto text-zinc-600">
<MainHero />
<MainRecent />
<MainTrending />
</main>
</template>