Files
aranroig.com/frontend/app/app.vue
Aran Roig 6953b20b2c
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 37s
Big commit
2026-04-13 14:09:57 +02:00

32 lines
503 B
Vue

<template>
<head>
<title>Aran Central</title>
</head>
<div>
<NuxtRouteAnnouncer />
<div class="container">
<NuxtPage></NuxtPage>
</div>
</div>
</template>
<script setup lang="ts">
onMounted(() => {
setupTheme()
});
</script>
<style lang="scss" scoped>
.container {
align-items: stretch; /* make items grow horizontally to fill container */
margin-bottom: 30px;
display: flex;
flex-direction: column;
padding-left: 20px;
padding-right: 20px;
}
</style>