-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
26 lines (24 loc) · 1.11 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
<script setup>
useSeoMeta({
title: "Xnpltn - Software Engineer | Backend | Terminal Apps",
ogTitle: "xnpltn - Software Engineer | Backend Developer | Terminal Apps Developer",
description: 'xnpltn on twitter, software engineer specializing in backend development, terminal applications, and systems programming',
ogDescription: 'xnpltn on twitter and internet, A backend developer, A freelancer , terminal apps developer, and systems developer',
ogImage: '/signature.png',
twitterCard: 'summary_large_image',
twitterTitle: "xnplt - Software Engineer | Backend Developer",
twitterDescription: 'Backend Developer, Freelancer, Systems Developer. Gamer',
twitterImage: '/signature.png',
keywords: 'xnpltn, software engineer, backend development, terminal applications, Go, Rust, C, programming, portfolio, Vue, Javascript, Python',
});
useHead({
htmlAttrs: { lang: 'en' },
meta: [{ name: 'viewport', content: 'width=device-width, initial-scale=1' }],
link: [{ rel: 'icon', type: 'image/x-icon', href: '/signature.png' }],
});
</script>
<template>
<NuxtLayout>
<NuxtPage/>
</NuxtLayout>
</template>