/* education.jsx — blog teasers + instagram grid Article data lives in articles.jsx (VD_ARTICLES). Clicking a card navigates to the full article subpage at #/articulo/. */ function Education() { const ARTICLES = window.VD_ARTICLES || []; return (
Educación · Diario

Aprende antes
de decidir.

Artículos escritos por la doctora para tomar decisiones informadas sobre tu piel, tu rostro y tu cabello.

{ARTICLES.map((a, i) => (
{a.tag}

{a.title}

{a.meta}
Leer artículo
))}
); } /* Instagram feed. To use real posts: fill each entry below with the post/reel `href`, a short `title`, and a local preview image `img` (drop the screenshot in /assets, e.g. "assets/ig-1.jpg"). While `img` is empty a warm placeholder with the title is shown instead. */ const IG_POSTS = [ { title: "post · capilar antes/después", tone: "mocha", href: "https://www.instagram.com/medvictoriadjanon/p/DX7EhTNDoFJ/", img: "assets/ig-1.jpg" }, { title: "reel · botox natural", tone: "rose", href: "https://www.instagram.com/medvictoriadjanon/reel/DQwtu1ajoch/", img: "assets/ig-2.jpg" }, { title: "reel · efecto purga", tone: "champagne", href: "https://www.instagram.com/medvictoriadjanon/reel/DXo69xujptc/", img: "assets/ig-3.jpg" }, { title: "reel · radiofrecuencia", tone: "bone", href: "https://www.instagram.com/medvictoriadjanon/reel/DVbURt4DtIv/", img: "assets/ig-4.jpg" }, { title: "reel · elige bien tu médico", tone: "rose", href: "https://www.instagram.com/medvictoriadjanon/reel/DX9XU41uxLA/", img: "assets/ig-5.jpg" }, { title: "reel · después de los 30", tone: "champagne", href: "https://www.instagram.com/reel/DMsa32RsgwG/", img: "assets/ig-6.jpg" }, ]; function Instagram() { const POSTS = window.IG_POSTS || IG_POSTS; return (
Instagram

@medvictoriadjanon

Seguir
{POSTS.map((p, i) => ( {p.img && {p.title}} ))}
); } Object.assign(window, { Education, Instagram });