command: $content = @'
Knowledge Hub

Surgical Hub — Medical Device Guides & Clinical Insights | Agile Healthcare

Clinical insights, product updates and surgical techniques from Agile Healthcare — Telangana's leading Meril distributor.

'@ $bytes = [System.Text.Encoding]::UTF8.GetBytes($content) $b64 = [Convert]::ToBase64String($bytes) # Get current SHA $r = Invoke-RestMethod -Uri "https://api.github.com/repos/drharsha4488/AGILEHEALTHACRE.IN/contents/sections/main-blog.liquid" -Headers @{Authorization="token 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"} $sha = $r.sha $body = @{ message = "fix: complete dark theme CSS for blog - all classes now correct" content = $b64 sha = $sha } | ConvertTo-Json $result = Invoke-RestMethod -Uri "https://api.github.com/repos/drharsha4488/AGILEHEALTHACRE.IN/contents/sections/main-blog.liquid" -Method Put -Headers @{Authorization="token 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"; "Content-Type"="application/json"} -Body $body Write-Host "SUCCESS: $($result.commit.sha)" SUCCESS: 794f473b86452081432981013f9b3405b2578693