-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.vue
53 lines (51 loc) · 1.85 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
42
43
44
45
46
47
48
49
50
51
52
53
<template>
<div class="w-full relative h-full pt-12 bg-zinc-50 dark:bg-zinc-950">
<div class="relative z-20">
<LazySwitchMode />
<UContainer>
<div v-motion-fade class="flex flex-col gap-2 items-center justify-center">
<LazyPhotoProfile />
<LazyMyInfo />
<LazySocialNetwork />
<LazyGallery />
</div>
</UContainer>
</div>
<Footer />
<img v-motion-fade-visible src="/shadow.png"
class="object-cover object-center fixed w-full h-full left-0 top-0 z-10 dark:mix-blend-soft-light"
alt="shadow-background" loading="lazy">
</div>
</template>
<script setup>
const img = useImage()
useSeoMeta({
title: 'Hato | Minimal Portfolio Showcase',
ogTitle: 'Hato | Minimal Portfolio Showcase',
description:
'Discover Hato, the sleek portfolio website perfect for freelancers, photographers, and artists made with Nuxt UI',
ogDescription:
'Discover Hato, the sleek portfolio website perfect for freelancers, photographers, and artists made with Nuxt UI',
ogImage: "https://res.cloudinary.com/dkr1hluva/image/upload/v1713023084/og/og-hato_roec1l.jpg",
ogImageSecureUrl: 'https://res.cloudinary.com/dkr1hluva/image/upload/v1713023084/og/og-hato_roec1l.jpg',
ogUrl: 'https://res.cloudinary.com/dkr1hluva/image/upload/v1713023084/og/og-hato_roec1l.jpg',
twitterImage: "https://res.cloudinary.com/dkr1hluva/image/upload/v1713023084/og/og-hato_roec1l.jpg",
twitterCard: "summary_large_image",
twitterTitle: 'Hato | Minimal Portfolio Showcase',
twitterDescription: 'Discover Hato, the sleek portfolio website perfect for freelancers, photographers, and artists made with Nuxt UI',
ogImageWidth: 1280,
ogImageHeight: 720,
});
useHead({
htmlAttrs: {
lang: 'en'
},
link: [
{
rel: 'icon',
type: 'image/svg',
href: '/favicon.svg'
}
]
})
</script>