diff --git a/assets/css/banner/baner-imagen.css b/assets/css/banner/baner-imagen.css new file mode 100644 index 0000000..144d0f1 --- /dev/null +++ b/assets/css/banner/baner-imagen.css @@ -0,0 +1,17 @@ +.banner__imagen{ + background: url('../../img/banner.png') no-repeat center / cover; + width: 100%; +} + +@media screen and (min-width:0){ + .banner__imagen{ + height: calc(100vh - 51px); + } +} + + +@media screen and (min-width:768px){ + .banner__imagen{ + height: calc(100vh - 72px); + } +} \ No newline at end of file diff --git a/assets/css/banner/banner-titulo.css b/assets/css/banner/banner-titulo.css new file mode 100644 index 0000000..36c8145 --- /dev/null +++ b/assets/css/banner/banner-titulo.css @@ -0,0 +1,25 @@ +.banner__titulo{ + color: #fdfdfd; + font-family: Pacifico, cursive; + + position: absolute; + left: 50%; + text-shadow: 0 4px 4px rgba(0, 0, 0, 0.75); + top: 50%; + text-align: center; + transform: translate(-50%, -50%); + width: 100%; + +} + +@media screen and (min-width:0) { + .banner__titulo{ + font-size: 3rem; + } +} + +@media screen and (min-width:768px) { + .banner__titulo{ + font-size: 5.0625rem; + } +} \ No newline at end of file diff --git a/assets/css/banner/banner.css b/assets/css/banner/banner.css new file mode 100644 index 0000000..8fe493a --- /dev/null +++ b/assets/css/banner/banner.css @@ -0,0 +1,3 @@ +.banner{ + position: relative; +} \ No newline at end of file diff --git a/assets/css/cabecera.css b/assets/css/cabecera.css new file mode 100644 index 0000000..f7c5a38 --- /dev/null +++ b/assets/css/cabecera.css @@ -0,0 +1,22 @@ +.cabecera { + align-items: center; + background: #f9f9f9; + display: flex; + justify-content: space-between; + padding-left: 2rem; + padding-right: 2rem; +} + +@media screen and (min-width:0) { + .cabecera{ + padding: 0 1rem; + justify-content: center; + } +} + +@media screen and (min-width:768px) { + .cabecera{ + padding: 0 5rem; + justify-content: space-between; + } +} \ No newline at end of file diff --git a/assets/css/logo.css b/assets/css/logo.css new file mode 100644 index 0000000..ee0dd7b --- /dev/null +++ b/assets/css/logo.css @@ -0,0 +1,11 @@ +@media screen and (min-width: 0) { + .logo{ + display: none; + } +} + +@media screen and (min-width: 768px) { + .logo{ + display: block; + } +} \ No newline at end of file diff --git a/assets/css/menu/menu-item.css b/assets/css/menu/menu-item.css new file mode 100644 index 0000000..c61608f --- /dev/null +++ b/assets/css/menu/menu-item.css @@ -0,0 +1,3 @@ +.menu__item{ + list-style: none; +} \ No newline at end of file diff --git a/assets/css/menu/menu-link.css b/assets/css/menu/menu-link.css new file mode 100644 index 0000000..49e044d --- /dev/null +++ b/assets/css/menu/menu-link.css @@ -0,0 +1,17 @@ +.menu__link { + color: #808080; + margin-right: 1.25rem; + text-decoration: none; +} + +.menu__link--activo { + color: #333333; + font-weight: bold; + margin-right: 1.25rem; + text-decoration: none; + +} + +.menu__link:hover { + text-decoration: underline; +} \ No newline at end of file diff --git a/assets/css/menu/menu-lista.css b/assets/css/menu/menu-lista.css new file mode 100644 index 0000000..b0d330e --- /dev/null +++ b/assets/css/menu/menu-lista.css @@ -0,0 +1,3 @@ +.menu__lista{ + display: flex; +} \ No newline at end of file diff --git a/assets/css/normalize.css b/assets/css/normalize.css new file mode 100644 index 0000000..92aed47 --- /dev/null +++ b/assets/css/normalize.css @@ -0,0 +1,351 @@ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ + +html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* Sections + ========================================================================== */ + +/** + * Remove the margin in all browsers. + */ + +body { + margin: 0; +} + +/** + * Render the `main` element consistently in IE. + */ + +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Remove the gray background on active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** + * Add the correct font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove the border on images inside links in IE 10. + */ + +img { + border-style: none; +} + +/* Forms + ========================================================================== */ + +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { + /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + +button, +select { + /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ + +button, +[type='button'], +[type='reset'], +[type='submit'] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ + +button::-moz-focus-inner, +[type='button']::-moz-focus-inner, +[type='reset']::-moz-focus-inner, +[type='submit']::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type='button']:-moz-focusring, +[type='reset']:-moz-focusring, +[type='submit']:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ + +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ + +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ + +[type='checkbox'], +[type='radio'] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type='number']::-webkit-inner-spin-button, +[type='number']::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + +[type='search'] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ + +[type='search']::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* Interactive + ========================================================================== */ + +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ + +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ + +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ + +/** + * Add the correct display in IE 10+. + */ + +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ + +[hidden] { + display: none; +} diff --git a/assets/css/persona/persona-funcion.css b/assets/css/persona/persona-funcion.css new file mode 100644 index 0000000..0611e8a --- /dev/null +++ b/assets/css/persona/persona-funcion.css @@ -0,0 +1,5 @@ +.persona__funcion{ + color: #595959; + font-size: 1.25rem; + text-transform: lowercase; +} \ No newline at end of file diff --git a/assets/css/persona/persona-imagen.css b/assets/css/persona/persona-imagen.css new file mode 100644 index 0000000..404732c --- /dev/null +++ b/assets/css/persona/persona-imagen.css @@ -0,0 +1,21 @@ +.persona__imagen{ + height: 300px; + width: 300px; + margin: 0 auto; + background-position: center; + background-repeat: no-repeat; + background-size: cover; + border-radius: 100%; +} + +.persona__imagen--roberta{ + background-image: url('../../img/personas/roberta.jpg'); +} + +.persona__imagen--marcela{ + background-image: url('../../img/personas/marcela.jpg'); +} + +.persona__imagen--andreia{ + background-image: url('../../img/personas/andrea.jpg'); +} \ No newline at end of file diff --git a/assets/css/persona/persona-nombre.css b/assets/css/persona/persona-nombre.css new file mode 100644 index 0000000..db0c142 --- /dev/null +++ b/assets/css/persona/persona-nombre.css @@ -0,0 +1,6 @@ +.persona__nombre{ + color: #da2b1f; + font-family: Pacifico, cursive; + font-size: 2rem; + margin: 1rem 0; +} \ No newline at end of file diff --git a/assets/css/persona/persona.css b/assets/css/persona/persona.css new file mode 100644 index 0000000..45d93f1 --- /dev/null +++ b/assets/css/persona/persona.css @@ -0,0 +1,16 @@ +.persona{ + display: flex; + flex-direction: column; +} + +@media screen and (min-width:0){ + .persona{ + margin-bottom: 2rem; + } +} + +@media screen and (min-width:768px){ + .persona{ + margin-bottom: 0; + } +} \ No newline at end of file diff --git a/assets/css/personas.css b/assets/css/personas.css new file mode 100644 index 0000000..009730d --- /dev/null +++ b/assets/css/personas.css @@ -0,0 +1,17 @@ +.personas{ + display: flex; + justify-content: space-between; + padding-top: 3rem; +} + +@media screen and (min-width: 0){ + .personas{ + flex-direction: column; + } +} + +@media screen and (min-width: 768px){ + .personas{ + flex-direction: row; + } +} \ No newline at end of file diff --git a/assets/css/quienes/quienes-descripcion.css b/assets/css/quienes/quienes-descripcion.css new file mode 100644 index 0000000..cc321e7 --- /dev/null +++ b/assets/css/quienes/quienes-descripcion.css @@ -0,0 +1,5 @@ +.quienes__descripcion{ + color: #595959; + font-size: 1.75rem; + font-weight: 100; +} \ No newline at end of file diff --git a/assets/css/quienes/quienes-titulo.css b/assets/css/quienes/quienes-titulo.css new file mode 100644 index 0000000..0d2edaa --- /dev/null +++ b/assets/css/quienes/quienes-titulo.css @@ -0,0 +1,7 @@ +.quienes__titulo{ + color: #da2b1f; + font-family: pacifico, cursive; + font-weight: 400; + font-size: 3.1875rem; + margin-bottom: 1rem; +} \ No newline at end of file diff --git a/assets/css/quienes/quienes.css b/assets/css/quienes/quienes.css new file mode 100644 index 0000000..f794057 --- /dev/null +++ b/assets/css/quienes/quienes.css @@ -0,0 +1,4 @@ +.quienes{ + padding: 5rem; + text-align: center; +} \ No newline at end of file diff --git a/assets/css/receta/receta-boton.css b/assets/css/receta/receta-boton.css new file mode 100644 index 0000000..ec24ae8 --- /dev/null +++ b/assets/css/receta/receta-boton.css @@ -0,0 +1,13 @@ +.receta__boton{ + background:#DA2B1F; + border: none; + border-radius: 5px; + color: #fdfdfd; + padding: 1rem; + transition: all .1s ease-in-out ; +} + +.receta__boton:hover{ + cursor: pointer; + background: #9f1010; +} diff --git a/assets/css/receta/receta-contenido.css b/assets/css/receta/receta-contenido.css new file mode 100644 index 0000000..f482629 --- /dev/null +++ b/assets/css/receta/receta-contenido.css @@ -0,0 +1,3 @@ +.receta__contenido{ + padding: 1rem; +} \ No newline at end of file diff --git a/assets/css/receta/receta-descripcion.css b/assets/css/receta/receta-descripcion.css new file mode 100644 index 0000000..f9c80ff --- /dev/null +++ b/assets/css/receta/receta-descripcion.css @@ -0,0 +1,5 @@ +.receta__descripcion{ + font-size: 1.1875rem; + line-height: 1.5; + text-align: justify; +} \ No newline at end of file diff --git a/assets/css/receta/receta-imagen.css b/assets/css/receta/receta-imagen.css new file mode 100644 index 0000000..4b3e95d --- /dev/null +++ b/assets/css/receta/receta-imagen.css @@ -0,0 +1,3 @@ +.receta__imagen{ + height: 200px; +} \ No newline at end of file diff --git a/assets/css/receta/receta-titulo.css b/assets/css/receta/receta-titulo.css new file mode 100644 index 0000000..20964c8 --- /dev/null +++ b/assets/css/receta/receta-titulo.css @@ -0,0 +1,3 @@ +.receta__titulo{ + font-size: 1.4375rem; +} \ No newline at end of file diff --git a/assets/css/receta/receta.css b/assets/css/receta/receta.css new file mode 100644 index 0000000..9a2ded4 --- /dev/null +++ b/assets/css/receta/receta.css @@ -0,0 +1,29 @@ +.receta{ + background: #fdfdfd; + display: flex; + flex-direction: column; + margin-bottom: 5rem; + +} + +@media screen and (min-width: 0){ + .receta{ + margin-right: 1rem; + width: 100% + } +} + +@media screen and (min-width: 768px){ + .receta{ + margin-right: 2.5rem; + width: calc(33.33% - 2.5rem); + } +} + +@media screen and (min-width: 992px){ + .receta{ + margin-right: 5rem; + width: calc(25% - 5rem); + } + +} \ No newline at end of file diff --git a/assets/css/recetas.css b/assets/css/recetas.css new file mode 100644 index 0000000..7ec72f6 --- /dev/null +++ b/assets/css/recetas.css @@ -0,0 +1,24 @@ +.recetas{ + background: #dab997; + display: flex; + flex-wrap: wrap; + +} + +@media screen and (min-width: 0){ + .recetas{ + padding: 5rem 0 0 1rem; + } +} + +@media screen and (min-width: 768px){ + .recetas{ + padding: 5rem 0 0 2.5rem; + } +} + +@media screen and (min-width: 992px){ + .recetas{ + padding: 5rem 0 0 5rem; + } +} \ No newline at end of file diff --git a/assets/css/reset.css b/assets/css/reset.css new file mode 100644 index 0000000..f95fb32 --- /dev/null +++ b/assets/css/reset.css @@ -0,0 +1,12 @@ +body { + font-family: Roboto, sans-serif; +} + +h1, h2, h3, h4, h5, h6 { + margin: 0; + padding: 0; +} + +ul, li { + padding: 0; +} \ No newline at end of file diff --git a/assets/css/rodapie.css b/assets/css/rodapie.css new file mode 100644 index 0000000..40bc2fb --- /dev/null +++ b/assets/css/rodapie.css @@ -0,0 +1,8 @@ +.rodapie{ + display: flex; + justify-content: space-between; + align-items: center; + padding-top:5rem; + padding-left: 2rem; + padding-right: 2rem; +} \ No newline at end of file diff --git a/assets/css/rodapie/rodapie-descripcion.css b/assets/css/rodapie/rodapie-descripcion.css new file mode 100644 index 0000000..e4f7e54 --- /dev/null +++ b/assets/css/rodapie/rodapie-descripcion.css @@ -0,0 +1,6 @@ +.rodapie__descripcion{ + display:flex; + font-size: 2rem; + margin-left: 5rem; + color: #8C8888; +} \ No newline at end of file diff --git a/assets/css/rodapie/rodapie-icon.css b/assets/css/rodapie/rodapie-icon.css new file mode 100644 index 0000000..c6d3ffa --- /dev/null +++ b/assets/css/rodapie/rodapie-icon.css @@ -0,0 +1,4 @@ +.rodapie__icon{ + margin-right: 1.25rem; + +} \ No newline at end of file diff --git a/assets/css/rodapie/rodapie-iten.css b/assets/css/rodapie/rodapie-iten.css new file mode 100644 index 0000000..782f20e --- /dev/null +++ b/assets/css/rodapie/rodapie-iten.css @@ -0,0 +1,3 @@ +.rodapie__item{ + list-style: none; +} \ No newline at end of file diff --git a/assets/css/rodapie/rodapie-lista.css b/assets/css/rodapie/rodapie-lista.css new file mode 100644 index 0000000..3a769e7 --- /dev/null +++ b/assets/css/rodapie/rodapie-lista.css @@ -0,0 +1,3 @@ +.rodapie__lista{ + display: flex; +} \ No newline at end of file diff --git a/assets/css/rodapie/rodapie-titulo.css b/assets/css/rodapie/rodapie-titulo.css new file mode 100644 index 0000000..29b76d5 --- /dev/null +++ b/assets/css/rodapie/rodapie-titulo.css @@ -0,0 +1,9 @@ +.rodapie__titulo{ + display: flex; + color: #8c8888; + font-weight: 400; + font-size: 1.25rem; + align-items: center; + padding: 1.5625rem; + +} \ No newline at end of file diff --git a/assets/css/sobre/sobre-descripcion.css b/assets/css/sobre/sobre-descripcion.css new file mode 100644 index 0000000..4f367af --- /dev/null +++ b/assets/css/sobre/sobre-descripcion.css @@ -0,0 +1,19 @@ +.sobre__descripcion{ + color: #8C8888; + + font-weight: 100; +} + +@media screen and (min-width: 0){ + .sobre__descripcion{ + font-size: 1.3rem; + } +} + +@media screen and (min-width: 0){ + .sobre__descripcion{ + font-size: 1.75rem; + } +} + + diff --git a/assets/css/sobre/sobre-titulo.css b/assets/css/sobre/sobre-titulo.css new file mode 100644 index 0000000..6a3bf1f --- /dev/null +++ b/assets/css/sobre/sobre-titulo.css @@ -0,0 +1,18 @@ +.sobre__titulo{ + color: #DA2B1F; + font-family: Pacifico, cursive; + font-weight: 400; + +} + +@media screen and (min-width: 0){ + .sobre__titulo{ + font-size: 2rem; + } +} + +@media screen and (min-width: 768px){ + .sobre__titulo{ + font-size: 3.1875rem; + } +} \ No newline at end of file diff --git a/assets/css/sobre/sobre.css b/assets/css/sobre/sobre.css new file mode 100644 index 0000000..f5f86bb --- /dev/null +++ b/assets/css/sobre/sobre.css @@ -0,0 +1,17 @@ +.sobre{ + + text-align: center; +} + +@media screen and (min-width:0){ + .sobre{ + padding: 2.5rem 1rem; + } +} + +@media screen and (min-width:768px){ + .sobre{ + padding: 2.5rem; + } + +} \ No newline at end of file diff --git a/assets/img/Instagram.png b/assets/img/Instagram.png new file mode 100644 index 0000000..e16be19 Binary files /dev/null and b/assets/img/Instagram.png differ diff --git a/assets/img/WhatsApp.png b/assets/img/WhatsApp.png new file mode 100644 index 0000000..5f8504e Binary files /dev/null and b/assets/img/WhatsApp.png differ diff --git a/assets/img/banner.png b/assets/img/banner.png new file mode 100644 index 0000000..65bd98e Binary files /dev/null and b/assets/img/banner.png differ diff --git a/assets/img/email.png b/assets/img/email.png new file mode 100644 index 0000000..adea2af Binary files /dev/null and b/assets/img/email.png differ diff --git a/assets/img/logo.jpg b/assets/img/logo.jpg new file mode 100644 index 0000000..3638336 Binary files /dev/null and b/assets/img/logo.jpg differ diff --git a/assets/img/personas/andrea.jpg b/assets/img/personas/andrea.jpg new file mode 100644 index 0000000..2623d50 Binary files /dev/null and b/assets/img/personas/andrea.jpg differ diff --git a/assets/img/personas/marcela.jpg b/assets/img/personas/marcela.jpg new file mode 100644 index 0000000..ec8b057 Binary files /dev/null and b/assets/img/personas/marcela.jpg differ diff --git a/assets/img/personas/roberta.jpg b/assets/img/personas/roberta.jpg new file mode 100644 index 0000000..ded2dae Binary files /dev/null and b/assets/img/personas/roberta.jpg differ diff --git a/assets/img/recetas/beterrabas-asadas.jpg b/assets/img/recetas/beterrabas-asadas.jpg new file mode 100644 index 0000000..b85ad3e Binary files /dev/null and b/assets/img/recetas/beterrabas-asadas.jpg differ diff --git a/assets/img/recetas/ensalada-de-frutas.jpg b/assets/img/recetas/ensalada-de-frutas.jpg new file mode 100644 index 0000000..22f743d Binary files /dev/null and b/assets/img/recetas/ensalada-de-frutas.jpg differ diff --git a/assets/img/recetas/ensalada-de-kiwi.jpg b/assets/img/recetas/ensalada-de-kiwi.jpg new file mode 100644 index 0000000..0f8b33e Binary files /dev/null and b/assets/img/recetas/ensalada-de-kiwi.jpg differ diff --git a/assets/img/recetas/mix-de-vegetales.jpg b/assets/img/recetas/mix-de-vegetales.jpg new file mode 100644 index 0000000..dd9ec6d Binary files /dev/null and b/assets/img/recetas/mix-de-vegetales.jpg differ diff --git a/assets/img/recetas/pimentones-juliana.jpg b/assets/img/recetas/pimentones-juliana.jpg new file mode 100644 index 0000000..73b3f5a Binary files /dev/null and b/assets/img/recetas/pimentones-juliana.jpg differ diff --git a/assets/img/recetas/plato-oriental.jpg b/assets/img/recetas/plato-oriental.jpg new file mode 100644 index 0000000..23be0f2 Binary files /dev/null and b/assets/img/recetas/plato-oriental.jpg differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..d7d630a --- /dev/null +++ b/index.html @@ -0,0 +1,149 @@ + + + + + + + Fruta & Fruto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+

Recetas para economizar y ganar salud

+

Nuestras recetas te ayudan a aprovechar mejor los alimentos, economizar, ganar + tiempo y practicidad

+
+ +
+
+ bol de aguacate +
+

bol de aguacate

+

Receta refrescante llena de vitaminas para tu desayuno.

+ +
+
+
+ Ensalada de kiwi +
+

Ensalada de kiwi

+

Receta refrescante llena de vitaminas para tu desayuno.

+ +
+
+
+ Mix de vegetales +
+

Mix de vegetales

+

Receta refrescante llena de vitaminas para tu desayuno.

+ +
+
+
+ Pimentones en Juliana +
+

Pimentones en Juliana

+

Receta refrescante llena de vitaminas para tu desayuno.

+ +
+
+
+ Plato oriental +
+

Plato oriental

+

Receta refrescante llena de vitaminas para tu desayuno.

+ +
+
+
+ Remolachas asadas +
+

Remolachas assadas

+

Receta refrescante llena de vitaminas para tu desayuno.

+ +
+
+
+ +
+

Quienes somos

+

Conozca a la comunidad detrás de la iniciativa

+
+
+
+ Roberta + Contenido +
+
+
+ Marcela + Chef de cocina +
+
+
+ Andréia + Pequeña Productora +
+
+
+ + + + \ No newline at end of file