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
```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";
```Last updated