-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
35 lines (34 loc) · 1.36 KB
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<script setup lang="ts">
useHead({
htmlAttrs: {
lang: 'en'
},
link: [
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' },
{ rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicon-16x16.png' },
{ rel: 'manifest', href: '/site.webmanifest' },
],
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
]
})
useSeoMeta({
title: 'Idorenyin Udoh | frontend engineer & technical writer',
ogTitle: 'Idorenyin Udoh | frontend engineer & technical writer',
twitterTitle: 'Idorenyin Udoh | frontend engineer & technical writer',
description: 'Idorenyin Udoh - a frontend engineer and technical writer based in Lagos, Nigeria.',
ogDescription: 'Idorenyin Udoh - a frontend engineer and technical writer based in Lagos, Nigeria.',
twitterDescription: 'Idorenyin Udoh - a frontend engineer and technical writer based in Lagos, Nigeria.',
ogImage: 'https://res.cloudinary.com/idorenyinudoh/image/upload/portfolio/home-hero.png',
twitterImage: 'https://res.cloudinary.com/idorenyinudoh/image/upload/portfolio/home-hero.png',
twitterCard: 'summary_large_image',
ogUrl: `https://iudoh.me`,
})
</script>
<template>
<div class="px-6 md:px-8 lg:px-12 pb-12 pt-8 w-full min-h-screen flex flex-col bg-white dark:bg-[#1A1A1A]">
<TheNav />
<TheMain />
</div>
</template>