const DSB = window.ConstruimosTuEdificioDesignSystem_3f039f; const D_B = window.CTE_DATA; function BlogPage({ onNavigate }) { const { BlogCard, Pill, SectionHeading, Eyebrow, Button, Input } = DSB; const cats = ["Todos", "Construcción", "Arquitectura", "Edificios", "Departamentos", "Estructuras", "Desarrollo inmobiliario", "Inversión inmobiliaria", "Terrenos"]; const [cat, setCat] = React.useState("Todos"); const posts = cat === "Todos" ? D_B.posts : D_B.posts.filter(p => p.category === cat); const [lead, ...rest] = D_B.posts; return (
{cats.map(c => ( ))}
{cat === "Todos" ? (
{lead.category} {lead.date} · {lead.readTime}

{lead.title}

{lead.excerpt}

) : null}
{(cat === "Todos" ? rest : posts).map(p => )}
{posts.length === 0 ?

Aún no hay artículos en esta categoría.

: null}
); } Object.assign(window, { BlogPage });