Skip to main content

Customizing Content

This guide explains how to customize content in the Infowebplus application.

Sanity Studio

Most content is managed through Sanity Studio:

  1. Access Sanity Studio (local or deployed)
  2. Navigate to the content type you want to edit
  3. Make changes
  4. Publish

Translation Files

Static text translations are in /messages/:

  • en.json - English
  • es.json - Spanish
  • ro.json - Romanian

Edit these files to change static text.

Components

To customize component behavior:

  1. Navigate to src/components/
  2. Find the component you want to modify
  3. Edit the component file
  4. Changes will appear after rebuild

Styling

Customize styles in:

  • src/app/globals.css - Global styles
  • tailwind.config.ts - Tailwind configuration
  • Component-specific CSS modules

Next Steps