/* global React */ // Posts publicados: pizza server (vídeo), imagem comida (local), copo drink (vídeo local) const _SLA = window.BOLDER_LOCAL_ASSETS || 'assets/'; const POSTS = [ { type: "video", src: (window.BOLDER_MEDIA_URL || '') + 'PIZZA/Gen-4_5%20little%20smoke%20coming%20from%20the%20pizza%20%20Motion%20blur%2C%20surreal%2C%208K%2C%20cinematic%20586680882.mp4' }, { type: "image", src: _SLA + "social/post-2.png" }, { type: "video", src: _SLA + "social/post-3.mp4" }, { type: "video", src: _SLA + "social/post-4.mp4" }, ]; const cellStyle = { width: "100%", flex: 1, objectFit: "cover", borderRadius: 4, minHeight: 0, display: "block" }; function PostThumb({ index }) { const p = POSTS[index]; if (!p) return null; if (p.type === "video") { return