mirror of
https://github.com/ArthurDanjou/spanish-learner.git
synced 2026-01-24 08:50:32 +01:00
30 lines
607 B
Vue
30 lines
607 B
Vue
<script lang="ts" setup>
|
|
useHead({
|
|
link: [{ rel: 'icon', type: 'image/png', href: '/favicon.ico' }],
|
|
title: 'Spanish Learning Process • By Arthur Danjou',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<NuxtLoadingIndicator />
|
|
<UContainer>
|
|
<div class="bg-neutral-900 rounded-lg max-h-[96vh] h-[96vh] overflow-scroll p-4">
|
|
<Verbs />
|
|
<Words />
|
|
<Modals />
|
|
<Terminaisons />
|
|
<Prononciation />
|
|
</div>
|
|
</UContainer>
|
|
</div>
|
|
<NuxtPage />
|
|
</template>
|
|
|
|
<style>
|
|
body {
|
|
font-family: 'DM Sans', sans-serif;
|
|
@apply h-full w-full text-neutral-400;
|
|
}
|
|
</style>
|