SMART IPTV PRO WEB Documentation
  • Introduction
  • Quick Start Guide
    • Prerequisites
    • Download the Project
    • Install Dependencies
    • Start the Development Server
    • Build for Production (Optional)
    • Edit the Project
  • Customizing the Project
    • Changing Icons
    • Changing Text
    • Changing Colors
  • Building the Project
  • Uploading the Project to Hosting
Powered by GitBook
On this page
  1. Customizing the Project

Changing Text

All text strings used in the project are stored in the src/constants.ts file for easy access and updates. This centralizes the management of text, making it simpler to modify content without diving in

Steps to Change Text

  1. Open the src/constants.ts file.

  2. Find the text you want to modify. For example, the file might look like this:

```typescript
export const appName = "SMART IPTV PRO";

export const kLogOut = "LogOut";
export const kMovies = "MOVIES";
export const kSeries = "SERIES";
export const kLive = "LIVE";

export const kCategories = "Categories";
export const kChannels = "Channels";
```

The changes will automatically reflect wherever these constants are used in the components. For instance

PreviousChanging IconsNextChanging Colors

Last updated 7 months ago