-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
31 lines (30 loc) · 1012 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
<script lang="ts" setup>
const siteMeta = useSiteMeta()
</script>
<template>
<Html class="dark" dir="ltr">
<Head>
<SeoKit />
<SchemaOrgPerson
:name="siteMeta.name"
image="https://res.cloudinary.com/dpub6gcei/image/upload/v1675566231/keyboardDabbler/Ada_circle_portfolio_avatar_vector_golden_retriever.png"
:same-as="siteMeta.sameAs"
/>
</Head>
<Body class="text-gray-100 antialiased">
<NuxtLoadingIndicator />
<Header />
<main class="md:(max-w-8xl pb-20 px-8) sm:(pb-16) mx-auto max-w-full px-4 py-7 pb-10">
<NuxtPage class="page-enter-active" />
</main>
<footer class="px-5 sm:px-7 md:px-10 text-center text-gray-400 text-sm my-5">
<div class="flex justify-center mb-3">
<SocialIcons />
</div>
<p class="my-3">
Made with ❤️ by <span class="text-yellow1 font-bold">keyboardDabbler</span> | © 2023-Present
</p>
</footer>
</Body>
</Html>
</template>