mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-02-09 21:05:57 +01:00
Initial commit
This commit is contained in:
41
app/app.vue
Normal file
41
app/app.vue
Normal file
@@ -0,0 +1,41 @@
|
||||
<script setup lang="ts">
|
||||
useSeoMeta({
|
||||
title: 'Arthur Danjou - Maths lover',
|
||||
description: 'A Nuxt template to build your full-stack application on the edge.'
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<NuxtLoadingIndicator color="#14b8a6" />
|
||||
<UContainer>
|
||||
<AppHeader />
|
||||
<NuxtPage />
|
||||
<AppFooter />
|
||||
</UContainer>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
body {
|
||||
font-family: 'DM Sans', sans-serif;
|
||||
@apply h-full w-full p-0 m-0 text-[#374151] dark:text-[#d1d5db];
|
||||
}
|
||||
|
||||
.sofia {
|
||||
font-family: 'Sofia Sans', sans-serif;
|
||||
}
|
||||
|
||||
.page-enter-active,
|
||||
.page-leave-active {
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.page-leave-to {
|
||||
opacity: 0;
|
||||
transform: translateY(-5px);
|
||||
}
|
||||
|
||||
.page-enter-from {
|
||||
opacity: 0;
|
||||
transform: translateY(5px);
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user