wip migration

This commit is contained in:
María
2025-08-14 15:12:29 +02:00
commit 61d96ac328
148 changed files with 31438 additions and 0 deletions

34
pages/page/terminos.vue Normal file
View File

@@ -0,0 +1,34 @@
<template>
<div class="container">
<div class="row justify-content-center">
<div class="col-10">
<h1 class="title">Términos y condiciones</h1>
</div>
</div>
</div>
</template>
<script>
export default {
setup() {
definePageMeta({
layout: 'main',
})
}
}
</script>
<style lang="scss" scoped>
.container {
margin-top: 5rem;
margin-bottom: 5rem;
@include mobile {
margin-top: 7rem;
}
}
.title {
color: $color-navy;
font-size: $xxl;
}
</style>