mirror of
https://github.com/ArthurDanjou/website.git
synced 2026-01-14 12:14:42 +01:00
30 lines
808 B
Vue
30 lines
808 B
Vue
<script setup lang="ts">
|
|
import { SpeedInsights } from '@vercel/speed-insights/nuxt'
|
|
|
|
const appConfig = useAppConfig()
|
|
const getColor = computed(() => appConfig.ui.primary)
|
|
|
|
const router = useRouter()
|
|
router.afterEach((route) => {
|
|
useCookie('last-route', { path: '/', default: () => '/' }).value = route.fullPath
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<SpeedInsights />
|
|
<NuxtLoadingIndicator :color="getColor" />
|
|
<section class="fixed inset-0 flex justify-center sm:px-8">
|
|
<div class="flex w-full max-w-7xl">
|
|
<div class="w-full bg-white ring-1 ring-zinc-100 dark:bg-zinc-900 dark:ring-zinc-300/20" />
|
|
</div>
|
|
</section>
|
|
<main class="relative z-50 min-h-[100svh]">
|
|
<Header />
|
|
<NuxtPage />
|
|
<Footer />
|
|
</main>
|
|
<UNotifications />
|
|
</div>
|
|
</template>
|