/*! elementor - v3.18.0 - 20-12-2023 */ .elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}/** * Internal dependencies */ import { buildTermsTree } from '../utils'; const list = [ { id: 1, name: 'Apricots', parent: 0 }, { id: 2, name: 'Clementine', parent: 0 }, { id: 3, name: 'Elderberry', parent: 2 }, { id: 4, name: 'Guava', parent: 2 }, { id: 5, name: 'Lychee', parent: 3 }, { id: 6, name: 'Mulberry', parent: 0 }, { id: 7, name: 'Tamarind', parent: 5 }, ]; describe( 'buildTermsTree', () => { test( 'should return an empty array on empty input', () => { const tree = buildTermsTree( [] ); expect( tree ).toEqual( [] ); } ); test( 'should return a flat array when there are no parent relationships', () => { const tree = buildTermsTree( [ { id: 1, name: 'Apricots', parent: 0 }, { id: 2, name: 'Clementine', parent: 0 }, ] ); expect( tree ).toEqual( [ { id: 1, name: 'Apricots', parent: 0, breadcrumbs: [], children: [], }, { id: 2, name: 'Clementine', parent: 0, breadcrumbs: [], children: [], }, ] ); } ); test( 'should return a tree of items', () => { const tree = buildTermsTree( list ); expect( tree ).toEqual( [ { id: 1, name: 'Apricots', parent: 0, breadcrumbs: [], children: [], }, { id: 2, name: 'Clementine', parent: 0, breadcrumbs: [], children: [ { id: 3, name: 'Elderberry', parent: 2, breadcrumbs: [ 'Clementine' ], children: [ { id: 5, name: 'Lychee', parent: 3, breadcrumbs: [ 'Clementine', 'Elderberry' ], children: [ { id: 7, name: 'Tamarind', parent: 5, breadcrumbs: [ 'Clementine', 'Elderberry', 'Lychee', ], children: [], }, ], }, ], }, { id: 4, name: 'Guava', parent: 2, breadcrumbs: [ 'Clementine' ], children: [], }, ], }, { id: 6, name: 'Mulberry', parent: 0, breadcrumbs: [], children: [], }, ] ); } ); test( 'should return a tree of items, with orphan categories appended to the end', () => { const filteredList = [ { id: 1, name: 'Apricots', parent: 0 }, { id: 2, name: 'Clementine', parent: 0 }, { id: 4, name: 'Guava', parent: 2 }, { id: 5, name: 'Lychee', parent: 3 }, { id: 6, name: 'Mulberry', parent: 0 }, ]; const tree = buildTermsTree( filteredList, list ); expect( tree ).toEqual( [ { id: 1, name: 'Apricots', parent: 0, breadcrumbs: [], children: [], }, { id: 2, name: 'Clementine', parent: 0, breadcrumbs: [], children: [ { id: 4, name: 'Guava', parent: 2, breadcrumbs: [ 'Clementine' ], children: [], }, ], }, { id: 6, name: 'Mulberry', parent: 0, breadcrumbs: [], children: [], }, { id: 5, name: 'Lychee', parent: 3, breadcrumbs: [ 'Clementine', 'Elderberry' ], children: [], }, ] ); } ); test( 'should return a tree of items, with orphan categories appended to the end, with children of thier own', () => { const filteredList = [ { id: 1, name: 'Apricots', parent: 0 }, { id: 3, name: 'Elderberry', parent: 2 }, { id: 4, name: 'Guava', parent: 2 }, { id: 5, name: 'Lychee', parent: 3 }, { id: 6, name: 'Mulberry', parent: 0 }, ]; const tree = buildTermsTree( filteredList, list ); expect( tree ).toEqual( [ { id: 1, name: 'Apricots', parent: 0, breadcrumbs: [], children: [], }, { id: 6, name: 'Mulberry', parent: 0, breadcrumbs: [], children: [], }, { id: 3, name: 'Elderberry', parent: 2, breadcrumbs: [ 'Clementine' ], children: [ { id: 5, name: 'Lychee', parent: 3, breadcrumbs: [ 'Clementine', 'Elderberry' ], children: [], }, ], }, { id: 4, name: 'Guava', parent: 2, breadcrumbs: [ 'Clementine' ], children: [], }, ] ); } ); } ); jQuery( function( $ ) { 'use strict'; /** * Object to handle PayPal admin functions. */ var wc_paypal_admin = { isTestMode: function() { return $( '#woocommerce_paypal_testmode' ).is( ':checked' ); }, /** * Initialize. */ init: function() { $( document.body ).on( 'change', '#woocommerce_paypal_testmode', function() { var test_api_username = $( '#woocommerce_paypal_sandbox_api_username' ).parents( 'tr' ).eq( 0 ), test_api_password = $( '#woocommerce_paypal_sandbox_api_password' ).parents( 'tr' ).eq( 0 ), test_api_signature = $( '#woocommerce_paypal_sandbox_api_signature' ).parents( 'tr' ).eq( 0 ), live_api_username = $( '#woocommerce_paypal_api_username' ).parents( 'tr' ).eq( 0 ), live_api_password = $( '#woocommerce_paypal_api_password' ).parents( 'tr' ).eq( 0 ), live_api_signature = $( '#woocommerce_paypal_api_signature' ).parents( 'tr' ).eq( 0 ); if ( $( this ).is( ':checked' ) ) { test_api_username.show(); test_api_password.show(); test_api_signature.show(); live_api_username.hide(); live_api_password.hide(); live_api_signature.hide(); } else { test_api_username.hide(); test_api_password.hide(); test_api_signature.hide(); live_api_username.show(); live_api_password.show(); live_api_signature.show(); } } ); $( '#woocommerce_paypal_testmode' ).trigger( 'change' ); } }; wc_paypal_admin.init(); }); {"id":141,"date":"2017-12-05T12:07:16","date_gmt":"2017-12-05T12:07:16","guid":{"rendered":"http:\/\/bridge121.qodeinteractive.com\/?page_id=141"},"modified":"2022-08-20T13:02:55","modified_gmt":"2022-08-20T18:02:55","slug":"nosotros","status":"publish","type":"page","link":"https:\/\/zonau.co\/nosotros\/","title":{"rendered":"Nosotros"},"content":{"rendered":"[vc_row css_animation=\u00bb\u00bb row_type=\u00bbrow\u00bb use_row_as_full_screen_section=\u00bbno\u00bb type=\u00bbgrid\u00bb angled_section=\u00bbno\u00bb text_align=\u00bbleft\u00bb background_image_as_pattern=\u00bbwithout_pattern\u00bb z_index=\u00bb0″ css=\u00bb.vc_custom_1606919170119{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\u00bb][vc_column width=\u00bb1\/2″][qode_elements_holder number_of_columns=\u00bbone_column\u00bb][qode_elements_holder_item advanced_animations=\u00bbno\u00bb item_padding=\u00bb100px 31px 18px 20px\u00bb item_padding_1280_1440=\u00bb50px 16% 40px 1%\u00bb item_padding_1024_1280=\u00bb20px 14% 20px 0%\u00bb item_padding_768_1024=\u00bb20px 10% 20px 0%\u00bb item_padding_600_768=\u00bb20px 12% 20px 5%\u00bb item_padding_480_600=\u00bb20px 6% 20px 6%\u00bb item_padding_480=\u00bb10px 6% 10px 6%\u00bb][vc_column_text]\n
Desde muy peque\u00f1o tuve la gran bendici\u00f3n de venir de un hogar donde mi mama Olga Brito como cabeza ejerc\u00eda la actividad de comerciante, ah\u00ed inicio mi pasi\u00f3n por los negocios. En el 2017 junto con mi esposa Yenny Carrascal quisimos emprender en uno de mis sue\u00f1os aplazados y era tener un restaurante para servirle a la comunidad universitaria de Cartagena.
\ny sobre todo para las mujeres que de alguna manera necesitaban un sitio limpio, acogedor donde ellas pudiesen estar seguras y tranquilas. As\u00ed fue como a finales de Septiembre del 2017 empez\u00f3 la reconstrucci\u00f3n del local y abrimos puertas el primero de Marzo del 2019 al restaurante que hoy llamamos Zona U.
\nUn restaurante multiplazas que ofrece comida deliciosa con mucha calidad: Carnes a la parrilla, hamburguesas, pizzas, Picadas, Desgranados y Hot Dogs, unidos con el m\u00e1gico ambiente del lugar y el equipo humano que lo atienden hacen que los clientes que nos visitan tenga una experiencia agradable y quieran volver.
\nEste sitio esta dise\u00f1ado para ti para reencontrarte con tus amigos, familiares y compa\u00f1eros de estudio o de trabajo y vivir una experiencia diferente.
\nZona U al igual que la mayor\u00eda de los negocios fue golpeado por la pandemia, pero esa frenada durante varios meses nos hizo repensar las nuevas necesidades y adaptarnos a la nueva realidad pos COVID 19, con lo cual nos preparamos con todas las medidas de Bio-seguridad y la digitalizaci\u00f3n del restaurante para poder brindarles a nuestros clientes la experiencia Zona U a un desde sus casas.<\/p>\n[\/vc_column_text][vc_empty_space height=\u00bb35px\u00bb][\/qode_elements_holder_item][\/qode_elements_holder][\/vc_column][vc_column width=\u00bb1\/2″][qode_elements_holder number_of_columns=\u00bbone_column\u00bb][qode_elements_holder_item advanced_animations=\u00bbno\u00bb item_padding=\u00bb100px 0px 60px 30px\u00bb item_padding_1280_1440=\u00bb200px 0px 0px 0px\u00bb item_padding_1024_1280=\u00bb140px 14% 140px 0%\u00bb item_padding_768_1024=\u00bb100px 10% 100px 0%\u00bb item_padding_600_768=\u00bb140px 12% 140px 5%\u00bb item_padding_480_600=\u00bb10px 6% 10px 6%\u00bb item_padding_480=\u00bb0px 6% 0px 6%\u00bb][vc_single_image image=\u00bb2455″ img_size=\u00bb1920×1080″ qode_css_animation=\u00bb\u00bb][vc_empty_space height=\u00bb35px\u00bb][vc_single_image image=\u00bb2456″ img_size=\u00bb1920×1080″ qode_css_animation=\u00bb\u00bb][vc_empty_space height=\u00bb35px\u00bb][\/qode_elements_holder_item][\/qode_elements_holder][\/vc_column][\/vc_row][vc_row css_animation=\u00bb\u00bb row_type=\u00bbrow\u00bb use_row_as_full_screen_section=\u00bbno\u00bb type=\u00bbfull_width\u00bb angled_section=\u00bbno\u00bb text_align=\u00bbleft\u00bb background_image_as_pattern=\u00bbwithout_pattern\u00bb z_index=\u00bb0″ css=\u00bb.vc_custom_1512480121073{background-image: url(https:\/\/zonau.co\/wp-content\/uploads\/2017\/12\/about-background-img-1.jpg?id=150) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\u00bb][vc_column width=\u00bb1\/3″ css=\u00bb.vc_custom_1512480633853{margin-top: -15px !important;}\u00bb offset=\u00bbvc_col-md-6″][\/vc_column][vc_column width=\u00bb2\/3″ offset=\u00bbvc_col-md-6″][qode_elements_holder number_of_columns=\u00bbone_column\u00bb][qode_elements_holder_item advanced_animations=\u00bbno\u00bb item_padding=\u00bb200px 31% 180px 10%\u00bb item_padding_1280_1440=\u00bb150px 16% 140px 1%\u00bb item_padding_1024_1280=\u00bb140px 14% 140px 0%\u00bb item_padding_768_1024=\u00bb100px 10% 100px 0%\u00bb item_padding_600_768=\u00bb140px 12% 140px 5%\u00bb item_padding_480_600=\u00bb130px 6% 130px 6%\u00bb item_padding_480=\u00bb130px 6% 130px 6%\u00bb][vc_column_text]\n