{"id":466,"date":"2026-03-07T07:13:24","date_gmt":"2026-03-07T07:13:24","guid":{"rendered":"https:\/\/profitaffliate.com\/home\/?page_id=466"},"modified":"2026-03-07T07:28:00","modified_gmt":"2026-03-07T07:28:00","slug":"testimoni-produk","status":"publish","type":"page","link":"https:\/\/profitaffliate.com\/home\/testimoni-produk\/","title":{"rendered":"Testimoni Produk"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"466\" class=\"elementor elementor-466\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dd5893a e-flex e-con-boxed e-con e-parent\" data-id=\"dd5893a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d5d9721 elementor-widget elementor-widget-html\" data-id=\"d5d9721\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\r\n\/* ===========================\r\n   1) OVERLAY (atas gambar \/ wrapper)\r\n   Letak canvas atas content\r\n   =========================== *\/\r\n.ic-fx-canvas{\r\n  position:absolute; inset:0;\r\n  width:100%; height:100%;\r\n  z-index:2;\r\n  opacity:.55;\r\n  pointer-events:none;\r\n}\r\n\r\n\/* Wrapper target (bos dah guna star-clamp, saya support dua2) *\/\r\n.star-clamp, .fx-clamp{\r\n  position:relative; \/* penting supaya canvas absolute ikut wrapper *\/\r\n}\r\n\r\n\/* ===========================\r\n   2) BACKGROUND FULL PAGE\r\n   Canvas duduk belakang semua\r\n   =========================== *\/\r\n.ic-fx-bg{\r\n  position:fixed; inset:0;\r\n  width:100vw; height:100vh;\r\n  z-index:-1;           \/* duduk belakang *\/\r\n  pointer-events:none;\r\n  opacity:.45;\r\n}\r\n<\/style>\r\n\r\n<script>\r\n(function(){\r\n  \"use strict\";\r\n\r\n  \/* =====================================================\r\n     CONFIG UTAMA (bos boleh ubah kat sini)\r\n     ===================================================== *\/\r\n  const CFG = {\r\n    \/\/ --- global\r\n    dprMax: 2,\r\n\r\n    \/\/ --- STAR (twinkle)\r\n    starDensityBase: 9000,   \/\/ lagi kecil => lagi banyak star\r\n    starMinR: 1.0,\r\n    starMaxR: 2.6,\r\n    starMinSpeed: 0.01,\r\n    starMaxSpeed: 0.05,\r\n    twinkleMin: .25,\r\n    twinkleMax: .90,\r\n    twinkleRate: .004,\r\n    pulseAmp: .18,\r\n    pulseRateMin: .003,\r\n    pulseRateMax: .009,\r\n\r\n    \/\/ --- DOT NETWORK (moving-dot-link-triangle)\r\n    dotDensityBase: 14000,   \/\/ lagi kecil => lagi banyak dot\r\n    dotMinR: 1.3,\r\n    dotMaxR: 2.4,\r\n    dotMinSpeed: 0.04,\r\n    dotMaxSpeed: 0.12,\r\n\r\n    linkDist: 130,           \/\/ jarak max untuk line connect\r\n    linkWidth: 0.7,\r\n    linkAlpha: 0.28,         \/\/ alpha asas line\r\n\r\n    triDist: 110,            \/\/ jarak untuk triangle (lebih ketat)\r\n    triAlpha: 0.06,          \/\/ fill triangle lembut sangat\r\n\r\n    \/\/ warna dot\/line (boleh campur)\r\n    dotColors: [\r\n      \"rgba(255,255,255,0.85)\",\r\n      \"rgba(255,240,200,0.80)\",\r\n      \"rgba(180,210,255,0.85)\"\r\n    ],\r\n    lineColor: \"rgba(255,255,255,0.85)\",\r\n    triColor:  \"rgba(255,255,255,1)\"\r\n  };\r\n\r\n  const rand = (a,b)=> a + Math.random()*(b-a);\r\n\r\n  \/* =====================================================\r\n     TARGET MODE A: OVERLAY atas gambar\r\n     - support .star-clamp (legacy bos)\r\n     - support .fx-clamp (baru)\r\n     - kalau class tu letak dekat IMG, dia guna parent as wrapper\r\n     ===================================================== *\/\r\n  function findOverlayTargets(){\r\n    const pairs = [];\r\n    document.querySelectorAll(\".star-clamp, .fx-clamp\").forEach(w=>{\r\n      if (!w) return;\r\n      if (w.tagName && w.tagName.toLowerCase()===\"img\"){\r\n        pairs.push({wrap:w.parentElement, img:w, mode:\"overlay\"});\r\n      } else {\r\n        const img = w.querySelector(\"img\");\r\n        pairs.push({wrap:w, img:img || null, mode:\"overlay\"});\r\n      }\r\n    });\r\n    return pairs.filter(x=>x.wrap);\r\n  }\r\n\r\n  \/* =====================================================\r\n     TARGET MODE B: BACKGROUND full page\r\n     Cara ON:\r\n       1) letak <body class=\"fx-network-bg\">\r\n          ATAU\r\n       2) letak <div id=\"fx-network-bg\"><\/div> (mana2 dalam body)\r\n     ===================================================== *\/\r\n  function shouldEnableBackground(){\r\n    return document.body.classList.contains(\"fx-network-bg\")\r\n      || document.getElementById(\"fx-network-bg\");\r\n  }\r\n\r\n  \/* =====================================================\r\n     CREATE CANVAS + ENGINE\r\n     ===================================================== *\/\r\n  function ensureCanvas(wrap, className){\r\n    \/\/ elak duplicate\r\n    const existing = wrap.querySelector(\":scope > canvas.\"+className);\r\n    if (existing) return existing;\r\n\r\n    const c = document.createElement(\"canvas\");\r\n    c.className = className;\r\n    c.setAttribute(\"aria-hidden\",\"true\");\r\n    wrap.appendChild(c);\r\n    return c;\r\n  }\r\n\r\n  function makeEngine({wrap, canvas, mode}){\r\n    const ctx = canvas.getContext(\"2d\", {alpha:true});\r\n    let w=0,h=0,dpr=1, rafId=null;\r\n\r\n    let stars=[], dots=[];\r\n\r\n    function syncSize(){\r\n      const r = wrap.getBoundingClientRect();\r\n      w = Math.max(1, r.width);\r\n      h = Math.max(1, r.height);\r\n      dpr = Math.min(window.devicePixelRatio || 1, CFG.dprMax);\r\n\r\n      canvas.width  = (w*dpr) | 0;\r\n      canvas.height = (h*dpr) | 0;\r\n      ctx.setTransform(dpr,0,0,dpr,0,0);\r\n    }\r\n\r\n    function initStars(){\r\n      const n = Math.max(6, Math.floor((w*h)\/CFG.starDensityBase));\r\n      const colors = [\r\n        \"rgba(255,255,255,0.9)\",\r\n        \"rgba(255,255,200,0.85)\",\r\n        \"rgba(255,230,120,0.85)\",\r\n        \"rgba(180,200,255,0.85)\"\r\n      ];\r\n      stars = new Array(n).fill(0).map(()=>({\r\n        x:Math.random()*w, y:Math.random()*h,\r\n        rBase:rand(CFG.starMinR,CFG.starMaxR), r:0,\r\n        vx:rand(CFG.starMinSpeed,CFG.starMaxSpeed)*(Math.random()<.5?-1:1),\r\n        vy:rand(CFG.starMinSpeed,CFG.starMaxSpeed)*(Math.random()<.5?-1:1),\r\n        alpha:rand(CFG.twinkleMin,CFG.twinkleMax),\r\n        twPhase:Math.random()*Math.PI*2,\r\n        twSpeed:rand(.5,1.5)*CFG.twinkleRate,\r\n        twDir:Math.random()<.5?-1:1,\r\n        pulsePhase:Math.random()*Math.PI*2,\r\n        pulseSpeed:rand(CFG.pulseRateMin,CFG.pulseRateMax),\r\n        color:colors[(Math.random()*colors.length)|0]\r\n      }));\r\n    }\r\n\r\n    function initDots(){\r\n      const n = Math.max(10, Math.floor((w*h)\/CFG.dotDensityBase));\r\n      dots = new Array(n).fill(0).map(()=>({\r\n        x:Math.random()*w, y:Math.random()*h,\r\n        r:rand(CFG.dotMinR,CFG.dotMaxR),\r\n        vx:rand(CFG.dotMinSpeed,CFG.dotMaxSpeed)*(Math.random()<.5?-1:1),\r\n        vy:rand(CFG.dotMinSpeed,CFG.dotMaxSpeed)*(Math.random()<.5?-1:1),\r\n        color:CFG.dotColors[(Math.random()*CFG.dotColors.length)|0]\r\n      }));\r\n    }\r\n\r\n    function bounce(p){\r\n      if (p.x < p.r){ p.x=p.r; p.vx*=-1; }\r\n      if (p.x > w-p.r){ p.x=w-p.r; p.vx*=-1; }\r\n      if (p.y < p.r){ p.y=p.r; p.vy*=-1; }\r\n      if (p.y > h-p.r){ p.y=h-p.r; p.vy*=-1; }\r\n    }\r\n\r\n    function drawStar(s){\r\n      ctx.beginPath();\r\n      ctx.globalAlpha = s.alpha;\r\n      ctx.fillStyle = s.color;\r\n      ctx.arc(s.x,s.y,s.r,0,Math.PI*2);\r\n      ctx.fill();\r\n\r\n      \/\/ glow\r\n      ctx.beginPath();\r\n      ctx.globalAlpha = s.alpha*0.30;\r\n      ctx.fillStyle = s.color;\r\n      ctx.arc(s.x,s.y,s.r*2.2,0,Math.PI*2);\r\n      ctx.fill();\r\n    }\r\n\r\n    function drawDot(d){\r\n      ctx.beginPath();\r\n      ctx.globalAlpha = 1;\r\n      ctx.fillStyle = d.color;\r\n      ctx.arc(d.x,d.y,d.r,0,Math.PI*2);\r\n      ctx.fill();\r\n    }\r\n\r\n    \/\/ line alpha ikut jarak\r\n    function lineA(dist){\r\n      const t = 1 - (dist\/CFG.linkDist);\r\n      return Math.max(0, CFG.linkAlpha * t);\r\n    }\r\n\r\n    function step(){\r\n      rafId = requestAnimationFrame(step);\r\n      ctx.clearRect(0,0,w,h);\r\n\r\n      \/\/ --- STARS\r\n      for(const s of stars){\r\n        s.x += s.vx; s.y += s.vy;\r\n        bounce(s);\r\n\r\n        s.twPhase += s.twSpeed*s.twDir;\r\n        if (Math.random() < .001) s.twDir *= -1;\r\n\r\n        const t = (Math.sin(s.twPhase)+1)\/2;\r\n        s.alpha = CFG.twinkleMin + t*(CFG.twinkleMax-CFG.twinkleMin);\r\n\r\n        s.pulsePhase += s.pulseSpeed;\r\n        const p = (Math.sin(s.pulsePhase)+1)\/2;\r\n        s.r = s.rBase*(1 + CFG.pulseAmp*(p*2-1));\r\n\r\n        drawStar(s);\r\n      }\r\n\r\n      \/\/ --- DOT MOVE\r\n      for(const d of dots){\r\n        d.x += d.vx; d.y += d.vy;\r\n        bounce(d);\r\n      }\r\n\r\n      \/\/ --- LINES (connect)\r\n      ctx.lineWidth = CFG.linkWidth;\r\n      ctx.strokeStyle = CFG.lineColor;\r\n\r\n      \/\/ --- TRIANGLES (fill)\r\n      \/\/ idea simple: untuk setiap dot i, cari 2 nearest dalam triDist\r\n      \/\/ lepas tu fill triangle (i,a,b)\r\n      for(let i=0;i<dots.length;i++){\r\n        const a = dots[i];\r\n\r\n        \/\/ lines from i to j\r\n        for(let j=i+1;j<dots.length;j++){\r\n          const b = dots[j];\r\n          const dx = a.x-b.x, dy = a.y-b.y;\r\n          const dist = Math.hypot(dx,dy);\r\n          if (dist <= CFG.linkDist){\r\n            ctx.globalAlpha = lineA(dist);\r\n            ctx.beginPath();\r\n            ctx.moveTo(a.x,a.y);\r\n            ctx.lineTo(b.x,b.y);\r\n            ctx.stroke();\r\n          }\r\n        }\r\n\r\n        \/\/ triangle: find 2 closest within triDist\r\n        let n1=-1,n2=-1, d1=1e9,d2=1e9;\r\n        for(let k=0;k<dots.length;k++){\r\n          if (k===i) continue;\r\n          const c = dots[k];\r\n          const dist = Math.hypot(a.x-c.x, a.y-c.y);\r\n          if (dist <= CFG.triDist){\r\n            if (dist < d1){ d2=d1; n2=n1; d1=dist; n1=k; }\r\n            else if (dist < d2){ d2=dist; n2=k; }\r\n          }\r\n        }\r\n        if (n1>=0 && n2>=0){\r\n          const b = dots[n1], c = dots[n2];\r\n\r\n          \/\/ pastikan b-c pun dekat sikit supaya triangle \u201cketat\u201d\r\n          const bc = Math.hypot(b.x-c.x, b.y-c.y);\r\n          if (bc <= CFG.triDist){\r\n            ctx.globalAlpha = CFG.triAlpha;\r\n            ctx.fillStyle = CFG.triColor;\r\n            ctx.beginPath();\r\n            ctx.moveTo(a.x,a.y);\r\n            ctx.lineTo(b.x,b.y);\r\n            ctx.lineTo(c.x,c.y);\r\n            ctx.closePath();\r\n            ctx.fill();\r\n          }\r\n        }\r\n      }\r\n\r\n      \/\/ --- DOTS draw last (supaya atas line)\r\n      for(const d of dots) drawDot(d);\r\n\r\n      ctx.globalAlpha = 1;\r\n    }\r\n\r\n    function start(){\r\n      stop();\r\n      syncSize();\r\n      initStars();\r\n      initDots();\r\n      rafId = requestAnimationFrame(step);\r\n    }\r\n\r\n    function stop(){\r\n      if (rafId){ cancelAnimationFrame(rafId); rafId=null; }\r\n    }\r\n\r\n    \/\/ optimize: jalan bila visible\r\n    const io = new IntersectionObserver(es=>{\r\n      es.forEach(e=>{ if (e.isIntersecting) start(); else stop(); });\r\n    },{threshold:.05});\r\n\r\n    io.observe(wrap);\r\n\r\n    const ro = new ResizeObserver(()=>start());\r\n    ro.observe(wrap);\r\n\r\n    \/\/ untuk background, fallback start terus\r\n    if (mode===\"bg\") start();\r\n\r\n    return {start,stop};\r\n  }\r\n\r\n  function prepareOverlay(){\r\n    findOverlayTargets().forEach(({wrap, mode})=>{\r\n      \/\/ pastikan wrap ada positioning\r\n      const cs = getComputedStyle(wrap);\r\n      if (cs.position === \"static\") wrap.style.position=\"relative\";\r\n\r\n      \/\/ create canvas overlay\r\n      const canvas = ensureCanvas(wrap, \"ic-fx-canvas\");\r\n\r\n      \/\/ elak create engine banyak kali\r\n      if (canvas.__ic_engine__) return;\r\n\r\n      canvas.__ic_engine__ = makeEngine({wrap, canvas, mode:\"overlay\"});\r\n    });\r\n  }\r\n\r\n  function prepareBackground(){\r\n    if (!shouldEnableBackground()) return;\r\n\r\n    \/\/ create one canvas fixed\r\n    if (document.querySelector(\"canvas.ic-fx-bg\")) return;\r\n\r\n    const c = document.createElement(\"canvas\");\r\n    c.className = \"ic-fx-bg\";\r\n    c.setAttribute(\"aria-hidden\",\"true\");\r\n    document.body.appendChild(c);\r\n\r\n    \/\/ wrap dummy object: gunakan viewport sebagai \"wrap\"\r\n    const wrap = {\r\n      getBoundingClientRect(){\r\n        return {width: window.innerWidth, height: window.innerHeight};\r\n      }\r\n    };\r\n\r\n    \/\/ trick: ResizeObserver perlukan element sebenar,\r\n    \/\/ jadi kita handle resize manual untuk bg.\r\n    const ctx = c.getContext(\"2d\",{alpha:true});\r\n    let engine = null;\r\n\r\n    function startBg(){\r\n      \/\/ buat pseudo-wrap element untuk IntersectionObserver (tak perlu)\r\n      \/\/ kita direct init guna makeEngine tapi wrap perlu element.\r\n      \/\/ Jadi kita guna element body sebagai wrap engine (lebih mudah).\r\n      \/\/ boundingRect ikut viewport; canvas fixed anyway.\r\n      const wrapEl = document.body;\r\n\r\n      \/\/ sync size custom (ikut viewport)\r\n      function syncCanvas(){\r\n        const dpr = Math.min(window.devicePixelRatio||1, CFG.dprMax);\r\n        c.width  = (window.innerWidth*dpr)|0;\r\n        c.height = (window.innerHeight*dpr)|0;\r\n        c.style.width = \"100vw\";\r\n        c.style.height = \"100vh\";\r\n        ctx.setTransform(dpr,0,0,dpr,0,0);\r\n      }\r\n      syncCanvas();\r\n\r\n      \/\/ guna engine biasa tapi dengan wrapEl (body)\r\n      engine = makeEngine({wrap: wrapEl, canvas: c, mode:\"bg\"});\r\n\r\n      \/\/ paksa sync bila resize\r\n      window.addEventListener(\"resize\", ()=>{\r\n        syncCanvas();\r\n        engine.start();\r\n      }, {passive:true});\r\n    }\r\n\r\n    startBg();\r\n  }\r\n\r\n  function ready(fn){\r\n    if (document.readyState!==\"loading\") fn();\r\n    else document.addEventListener(\"DOMContentLoaded\", fn);\r\n  }\r\n\r\n  ready(()=>{\r\n    prepareOverlay();\r\n    prepareBackground();\r\n  });\r\n\r\n  \/\/ untuk kes page builder \/ ajax render lambat\r\n  window.addEventListener(\"load\", ()=> setTimeout(prepareOverlay, 600));\r\n\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-48d7550 elementor-widget elementor-widget-heading\" data-id=\"48d7550\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">TESTIMONI STRONGMAN<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-db3dd57 star-clamp elementor-widget elementor-widget-image\" data-id=\"db3dd57\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/strongman-kotak-1024x683.jpg\" class=\"attachment-large size-large wp-image-194\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/strongman-kotak-1024x683.jpg 1024w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/strongman-kotak-300x200.jpg 300w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/strongman-kotak-768x512.jpg 768w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/strongman-kotak.jpg 1536w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6f10021 star-clamp elementor-widget elementor-widget-image\" data-id=\"6f10021\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"720\" height=\"720\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095276.jpg\" class=\"attachment-large size-large wp-image-484\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095276.jpg 720w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095276-300x300.jpg 300w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095276-150x150.jpg 150w\" sizes=\"(max-width: 720px) 100vw, 720px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0dd1a46 star-clamp elementor-widget elementor-widget-image\" data-id=\"0dd1a46\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"707\" height=\"481\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095277.jpg\" class=\"attachment-large size-large wp-image-485\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095277.jpg 707w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095277-300x204.jpg 300w\" sizes=\"(max-width: 707px) 100vw, 707px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ffaa969 star-clamp elementor-widget elementor-widget-image\" data-id=\"ffaa969\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"707\" height=\"352\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095278.jpg\" class=\"attachment-large size-large wp-image-486\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095278.jpg 707w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095278-300x149.jpg 300w\" sizes=\"(max-width: 707px) 100vw, 707px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a4b9e2 star-clamp elementor-widget elementor-widget-image\" data-id=\"0a4b9e2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"552\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095279.jpg\" class=\"attachment-large size-large wp-image-487\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095279.jpg 719w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095279-300x230.jpg 300w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0c505c4 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"0c505c4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInDown&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/profitaffliate.com\/daftar.asp\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"119\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/daftar-now-300x119.png\" class=\"attachment-medium size-medium wp-image-69\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/daftar-now-300x119.png 300w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/daftar-now.png 550w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0758c27 star-clamp elementor-widget elementor-widget-image\" data-id=\"0758c27\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"865\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095280.jpg\" class=\"attachment-large size-large wp-image-488\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095280.jpg 719w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095280-249x300.jpg 249w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a3068c3 star-clamp elementor-widget elementor-widget-image\" data-id=\"a3068c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"705\" height=\"532\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095281.jpg\" class=\"attachment-large size-large wp-image-489\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095281.jpg 705w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095281-300x226.jpg 300w\" sizes=\"(max-width: 705px) 100vw, 705px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-686e9b7 star-clamp elementor-widget elementor-widget-image\" data-id=\"686e9b7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"524\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095282.jpg\" class=\"attachment-large size-large wp-image-490\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095282.jpg 719w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095282-300x219.jpg 300w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c79a72a star-clamp elementor-widget elementor-widget-image\" data-id=\"c79a72a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"706\" height=\"865\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095283.jpg\" class=\"attachment-large size-large wp-image-491\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095283.jpg 706w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095283-245x300.jpg 245w\" sizes=\"(max-width: 706px) 100vw, 706px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cf01f98 e-flex e-con-boxed e-con e-parent\" data-id=\"cf01f98\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5cdb3f8 elementor-widget elementor-widget-image\" data-id=\"5cdb3f8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/family-1024x683.jpg\" class=\"attachment-large size-large wp-image-272\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/family-1024x683.jpg 1024w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/family-300x200.jpg 300w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/family-768x512.jpg 768w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/family.jpg 1536w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-40935bd star-clamp elementor-widget elementor-widget-image\" data-id=\"40935bd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"706\" height=\"441\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095284.jpg\" class=\"attachment-large size-large wp-image-492\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095284.jpg 706w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095284-300x187.jpg 300w\" sizes=\"(max-width: 706px) 100vw, 706px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-be8a000 star-clamp elementor-widget elementor-widget-image\" data-id=\"be8a000\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"703\" height=\"864\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095285.jpg\" class=\"attachment-large size-large wp-image-493\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095285.jpg 703w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095285-244x300.jpg 244w\" sizes=\"(max-width: 703px) 100vw, 703px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-71d00f6 star-clamp elementor-widget elementor-widget-image\" data-id=\"71d00f6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"732\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095286.jpg\" class=\"attachment-large size-large wp-image-494\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095286.jpg 719w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095286-295x300.jpg 295w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-926518e star-clamp elementor-widget elementor-widget-image\" data-id=\"926518e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"860\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095287.jpg\" class=\"attachment-large size-large wp-image-495\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095287.jpg 719w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095287-251x300.jpg 251w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a7cf968 star-clamp elementor-widget elementor-widget-image\" data-id=\"a7cf968\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"706\" height=\"742\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095288.jpg\" class=\"attachment-large size-large wp-image-496\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095288.jpg 706w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095288-285x300.jpg 285w\" sizes=\"(max-width: 706px) 100vw, 706px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a2e7d73 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"a2e7d73\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInDown&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/profitaffliate.com\/daftar.asp\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"119\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/daftar-now-300x119.png\" class=\"attachment-medium size-medium wp-image-69\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/daftar-now-300x119.png 300w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/daftar-now.png 550w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fdbeb92 star-clamp elementor-widget elementor-widget-image\" data-id=\"fdbeb92\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"642\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095289.jpg\" class=\"attachment-large size-large wp-image-497\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095289.jpg 719w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095289-300x268.jpg 300w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e2fb711 star-clamp elementor-widget elementor-widget-image\" data-id=\"e2fb711\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"870\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095290.jpg\" class=\"attachment-large size-large wp-image-498\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095290.jpg 719w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095290-248x300.jpg 248w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1d5522f star-clamp elementor-widget elementor-widget-image\" data-id=\"1d5522f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"876\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095291.jpg\" class=\"attachment-large size-large wp-image-499\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095291.jpg 719w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095291-246x300.jpg 246w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-013b751 star-clamp elementor-widget elementor-widget-image\" data-id=\"013b751\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"572\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095292.jpg\" class=\"attachment-large size-large wp-image-500\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095292.jpg 719w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095292-300x239.jpg 300w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8933d94 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"8933d94\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInDown&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/profitaffliate.com\/daftar.asp\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"119\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/daftar-now-300x119.png\" class=\"attachment-medium size-medium wp-image-69\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/daftar-now-300x119.png 300w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/daftar-now.png 550w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6d7cfce star-clamp elementor-widget elementor-widget-image\" data-id=\"6d7cfce\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"781\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095293.jpg\" class=\"attachment-large size-large wp-image-501\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095293.jpg 719w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095293-276x300.jpg 276w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-aa9f68e star-clamp elementor-widget elementor-widget-image\" data-id=\"aa9f68e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"518\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095294.jpg\" class=\"attachment-large size-large wp-image-502\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095294.jpg 719w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095294-300x216.jpg 300w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-55b1fe3 star-clamp elementor-widget elementor-widget-image\" data-id=\"55b1fe3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"708\" height=\"570\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095295.jpg\" class=\"attachment-large size-large wp-image-503\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095295.jpg 708w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095295-300x242.jpg 300w\" sizes=\"(max-width: 708px) 100vw, 708px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7a210e9 star-clamp elementor-widget elementor-widget-image\" data-id=\"7a210e9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"523\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095296.jpg\" class=\"attachment-large size-large wp-image-504\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095296.jpg 719w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095296-300x218.jpg 300w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6bf42df star-clamp elementor-widget elementor-widget-image\" data-id=\"6bf42df\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"630\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095297.jpg\" class=\"attachment-large size-large wp-image-505\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095297.jpg 719w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095297-300x263.jpg 300w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2c626ce star-clamp elementor-widget elementor-widget-image\" data-id=\"2c626ce\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"706\" height=\"504\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095298.jpg\" class=\"attachment-large size-large wp-image-506\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095298.jpg 706w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095298-300x214.jpg 300w\" sizes=\"(max-width: 706px) 100vw, 706px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-571d752 star-clamp elementor-widget elementor-widget-image\" data-id=\"571d752\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"685\" height=\"629\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095299.jpg\" class=\"attachment-large size-large wp-image-507\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095299.jpg 685w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/03\/1000095299-300x275.jpg 300w\" sizes=\"(max-width: 685px) 100vw, 685px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7f2cc34 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"7f2cc34\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInDown&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/profitaffliate.com\/daftar.asp\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"119\" src=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/daftar-now-300x119.png\" class=\"attachment-medium size-medium wp-image-69\" alt=\"\" srcset=\"https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/daftar-now-300x119.png 300w, https:\/\/profitaffliate.com\/home\/wp-content\/uploads\/2026\/02\/daftar-now.png 550w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>TESTIMONI STRONGMAN<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_post_transparent":"default","_kad_post_title":"hide","_kad_post_layout":"fullwidth","_kad_post_sidebar_id":"","_kad_post_content_style":"unboxed","_kad_post_vertical_padding":"hide","_kad_post_feature":"hide","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"class_list":["post-466","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/profitaffliate.com\/home\/wp-json\/wp\/v2\/pages\/466","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/profitaffliate.com\/home\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/profitaffliate.com\/home\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/profitaffliate.com\/home\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/profitaffliate.com\/home\/wp-json\/wp\/v2\/comments?post=466"}],"version-history":[{"count":22,"href":"https:\/\/profitaffliate.com\/home\/wp-json\/wp\/v2\/pages\/466\/revisions"}],"predecessor-version":[{"id":519,"href":"https:\/\/profitaffliate.com\/home\/wp-json\/wp\/v2\/pages\/466\/revisions\/519"}],"wp:attachment":[{"href":"https:\/\/profitaffliate.com\/home\/wp-json\/wp\/v2\/media?parent=466"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}