Files
aranroig.com/frontend/app/app.vue
Aran Roig a6197137c0
Some checks failed
Build and Deploy Nuxt / build (push) Has been cancelled
Big commit
2026-04-13 01:27:19 +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>