Files
aranroig.com/frontend/app/app.vue
Aran Roig b30f11a3db
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 40s
favicon
2026-04-13 23:29:25 +02:00

32 lines
500 B
Vue

<template>
<head>
<title>Aran Roig</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>