Domain:
Frontend / UI
Difficulty:
Beginner
Problem / steps to reproduce (for bugs)
- The app was renamed from AGPB to PULA, but several UI elements still display the old name.
- Users may see “AGPB” in page titles, headers, tabs, buttons, tooltips, forms, modals, etc.
- API calls, internal variable names, and backend logic should not be modified.
Expected outcome / task:
- Update all user-facing text from “AGPB” → “PULA” across the entire frontend.
- UI elements include (but are not limited to):
- Navbar titles
- Page titles
- Tab labels
- Form labels and placeholders
- Tooltips and modals
- Error or empty state messages
- Footer text
- Do not change:
- API endpoints or calls
- Backend logic or database references
- Internal variable names that relate to backend
Any links or references:
Setup Steps (short):
- Run the project locally (yarn install && yarn dev).
- Search the codebase for any UI occurrences of "AGPB" and replace them with "PULA".
- Test the application to ensure all UI references are updated and the app functions correctly.
- Verify that APIs and backend functionality remain unaffected.