```javascript
// Example: Decoupled CMS integration in JavaScript
const fetchContent = async (contentId) => {
  const response = await fetch(`https://your-cms-api.com/content/${contentId}`);
  return await response.json();
};
```