Website Content Update

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    823
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Website Content Updates

Content updates are a routine task that becomes problematic without the right process. Direct production edits without testing are a source of regressions. Updating through a CMS editor is the correct approach.

Content Update Process Structure

Via CMS (preferred): Editor changes content in Admin Panel → publishes → webhook triggers ISR regeneration → page updates without deployment.

Via Git (for structural changes): Change in branch → review → merge → CI/CD → deploy.

Update Types and Complexity

Update Type Executor Time
Page text, headings Content manager in CMS 5–30 min
Replace images Content manager 10–20 min
Add new page Content manager 30–60 min
Change menu structure Developer or CMS 30 min – 2 hours
Change landing section Developer 2–4 hours
New block/component Developer 1–3 days

Static Content Updates (Markdown files)

For Docusaurus/VitePress/Nextra sites, edit files directly via GitHub UI or Netlify CMS:

# Locally
git pull origin main
# Edit the file
vim content/blog/2024-new-post.md
git add content/blog/2024-new-post.md
git commit -m "content: add blog post about X"
git push origin main
# CI/CD automatically publishes

Netlify/Decap CMS for Git-based Sites

# public/admin/config.yml
backend:
  name: github
  repo: my-org/my-site
  branch: main

media_folder: public/images
public_folder: /images

collections:
  - name: blog
    label: Blog Posts
    folder: content/blog
    create: true
    fields:
      - { name: title, label: Title, widget: string }
      - { name: date, label: Date, widget: datetime }
      - { name: body, label: Body, widget: markdown }

Bulk Updates via Script

// Update prices in e-commerce via CMS API
async function bulkUpdatePrices(csvPath: string) {
  const prices = await readCsv(csvPath); // { sku, newPrice }[]

  for (const { sku, newPrice } of prices) {
    const entry = await cmsClient.entries.getBy('sku', sku);
    if (!entry) {
      console.warn(`Not found: ${sku}`);
      continue;
    }
    await cmsClient.entries.update(entry.id, { price: newPrice });
    console.log(`Updated ${sku}: ${newPrice}`);
  }
}

Content Maintenance Schedule

For regularly updated sites, implement weekly or monthly content sprints: audit outdated pages, update dates, verify broken links.

# Check for broken links
npx broken-link-checker https://mysite.com --recursive --exclude-external