Publico
Mercado
Vestuário
Material de Construção
const produtos = {
smartphones: [
{ nome: "Classificados", img: "https://rotapolicialnews.com.br/wp-content/uploads/2019/07/bens-venda-635x405.jpg", link: "https://adivulgamix.lojaintegrada.com.br/sim" },
{ nome: "Eventos", img: "https://img.freepik.com/vetores-premium/modelo-de-design-de-logotipo-de-fast-food_221979-233.jpg?w=1060", link: "https://www.casa.com.br" }
],
laptops: [
{ nome: "Laptop 1", img: "https://via.placeholder.com/200x150", link: "https://www.casa.com.br" }
]
};
function showProductsCarousel(category) {
const carousel = document.getElementById('carousel');
carousel.innerHTML = '';
produtos[category].forEach(produto => {
const productCard = `
`;
carousel.innerHTML += productCard;
});
}
function openLink(link) {
const mainFrame = document.getElementById('mainFrame');
mainFrame.src = link;
}
showProductsCarousel('smartphones');