-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
41 lines (39 loc) · 1.02 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
36
37
38
39
40
41
<script lang="ts" setup>
useSeoMeta({
title: 'About Harm Matthias Harms',
description: 'Explore my work and expertise. Learn more about my journey in web development.',
ogTitle: 'About Harm Matthias Harms',
ogDescription: 'Explore my work and expertise. Learn more about my journey in web development.',
ogImage: '/matthiasharms.jpg',
ogUrl: 'http://matthiasharms.dev/',
twitterTitle: 'About Harm Matthias Harms',
twitterDescription: 'Explore my work and expertise. Learn more about my journey in web development.',
twitterImage: '/matthiasharms.jpg',
twitterCard: 'summary'
})
useHead({
htmlAttrs: {
lang: 'en'
},
link: [
{
rel: 'icon',
type: 'image/jpeg',
href: '/matthiasharms.jpg'
}
]
})
</script>
<template>
<div class="bg-slate-50 dark:bg-slate-900">
<UContainer>
<div class="flex flex-col min-h-screen">
<Navbar/>
<div class="grow relative">
<Hero/>
<Expertises/>
</div>
</div>
</UContainer>
</div>
</template>