-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
64 lines (62 loc) · 1.97 KB
/
Copy pathapp.vue
File metadata and controls
64 lines (62 loc) · 1.97 KB
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
54
55
56
57
58
59
60
61
62
63
64
<script setup lang="ts">
useHead({
title: 'Portfolio Template with Nuxt 3 & Tailwind CSS',
htmlAttrs: {
lang: 'en',
},
meta: [
{ charset: 'UTF-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1.0' },
{
name: 'description',
content:
'A customizable portfolio template built with Nuxt 3 and Tailwind CSS. Easy to set up and perfect for showcasing your skills and experience.',
},
{
name: 'keywords',
content: 'portfolio template, Nuxt 3, Tailwind CSS, web development, customization',
},
{ name: 'author', content: 'Aleksandar Atanasovski' },
{ property: 'og:type', content: 'website' },
{ property: 'og:url', content: 'https://portfolio-template-nuxt.atalek.com/' },
{
property: 'og:title',
content: 'Portfolio Template with Nuxt 3 & Tailwind CSS',
},
{
property: 'og:image',
content:
'https://i0.wp.com/curiositygym.com/wp-content/uploads/2022/05/portfolio1.jpg?fit=1920%2C1080&ssl=1',
},
{
property: 'og:description',
content:
'A customizable portfolio template built with Nuxt 3 and Tailwind CSS. Easy to set up and perfect for showcasing your skills and experience.',
},
{
property: 'twitter:card',
content:
'https://i0.wp.com/curiositygym.com/wp-content/uploads/2022/05/portfolio1.jpg?fit=1920%2C1080&ssl=1',
},
{
property: 'twitter:url',
content: 'https://portfolio-template-nuxt.atalek.com/',
},
{
property: 'twitter:title',
content: 'Portfolio Template with Nuxt 3 & Tailwind CSS',
},
{
property: 'twitter:description',
content:
'A customizable portfolio template built with Nuxt 3 and Tailwind CSS. Easy to set up and perfect for showcasing your skills and experience.',
},
],
link: [{ rel: 'icon', type: 'image/png', href: '/favicon-16.png' }],
})
</script>
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>