${subtitle}
`;
serviceGrid.insertAdjacentHTML('beforeend', serviceHTML);
});
}
})
.catch(error => console.error('Error al obtener los proyectos:', error));
fetch(`https://webapi.dzor.net/items/customers`)
.then(response => response.json())
.then(data => {
const customerGrid = document.querySelector('.grid-customer-logo');
if (customerGrid !== null) {
data.data.forEach(customer => {
const customerHTML = `
`;
customerGrid.insertAdjacentHTML('beforeend', customerHTML);
});
}
})
.catch(error => console.error('Error al obtener los proyectos:', error));
console.log(`
.::....
:==========----::::..
:===================:
-===================
-==================:
-==================
-=================-
.. -=================.
-=--. -================-
-======-:. =================.
:==========--: ================-
.===============-:. ================. ..::-:
-===================-: ===============- ..::--=======-
:=======================-===============. ..:---===============
.===============================================================.
-===============================================================.
-============================ GRACIAS ============================:
..::--======================== POR =============================-
..::--================ VENIR =============================-
..::--=============================================
.-============================================.
.-=======================-
.-==========================-
:-=============================-.
:-=================================:
:====================-================-
.-=====================: -================-.
.-=====================-. -=================:
.-======================- .==================-
.-=====================: :==================-.
:=================-. -==================-.
:==============- .====================:
:==========-: :==================-:.
:=======-. -==============-:.
:====: -=========--.
:-. .======-:.
:==-:
.
`);
-->