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

View File

@@ -0,0 +1,40 @@
<template>
<div class="navsearch_container container-fluid">
<NuxtLink to="/busqueda"> Todos</NuxtLink>
<NuxtLink :to="{ name: 'busqueda', query: { order: 'newest' } }">
Últimos productos</NuxtLink
>
<NuxtLink to="/busqueda"> Más buscados</NuxtLink>
<NuxtLink to="/c"> Cooperativas</NuxtLink>
<NuxtLink to="/registro"> Regístrate</NuxtLink>
</div>
</template>
<script></script>
<style lang="scss" scoped>
.navsearch_container {
border-bottom: 3px solid $color-grey-nav;
text-align: center;
padding: 1.25em 1.25em;
@include mobile {
display: none;
}
a {
font-size: $m;
font-weight: $bold;
color: $color-navy;
text-decoration: none;
}
a:nth-child(1):after,
a:nth-child(2):after,
a:nth-child(3):after,
a:nth-child(4):after {
color: $color-navy;
content: '\22EE';
margin: 0.5rem;
}
}
</style>