Central data source for the YsWords Bible study app. JSON files here are fetched at runtime; the app always falls back to its bundled snapshot if this site is down.
fetch('https://yswords-data.netlify.app/data/bible_evidence.json')
.then(r => r.json())
.then(data => …)