-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
42 lines (39 loc) · 838 Bytes
/
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
<script setup lang="ts">
useHead({
title: "Nathan Collins",
htmlAttrs: {
lang: "en",
},
link: [
{
rel: "icon",
type: "image/png",
href: "/me.png",
},
],
});
useSeoMeta({
description: "Nathan Collins' Portfolio",
ogTitle: "Nathan Collins",
ogDescription: "Nathan Collins' Portfolio",
ogImage: "/me.png",
ogUrl: "https://nathancollins.dev",
twitterTitle: "Nathan Collins",
twitterDescription: "Nathan Collins",
twitterImage: "/me.png",
twitterCard: "summary",
});
</script>
useHead({ htmlAttrs: { lang: 'en' }, link: [ { rel: 'icon', type: 'image/png',
href: '/me.png' } ] })
<template>
<NuxtLayout class="dark:bg-slate-900 dark:text-white min-h-screen">
<NuxtPage />
</NuxtLayout>
</template>
<style>
.html,
body {
font-family: "JetBrains Mono", monospace;
}
</style>