feat(Recipes): creada vista para ver las recetas de un usuario

parent 851ba2ca
Showing with 26 additions and 0 deletions
<script setup>
import Header from '@/components/Header.vue';
import RecipeCard from '@/components/RecipeCard.vue';
</script>
<template>
<Header></Header>
<section class="bg-custom py-5 flex-grow-1">
<div class="container px-4 px-lg-5 mt-5">
<div class="d-flex flex-wrap gap-3 justify-content-center">
<RecipeCard></RecipeCard>
<RecipeCard></RecipeCard>
<RecipeCard></RecipeCard>
<RecipeCard></RecipeCard>
</div>
</div>
</section>
</template>
<style scoped>
.bg-custom {
background-color: #f4f6f5;
height: calc(100% - 40px);
}
</style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment