Changing Icons
All icons, including the project logo, and media-related icons (movies, series, live icons), are located in the src/public directory. These can easily be replaced with your own custom icons or logos.
To change the icons in your project, you first need to navigate to the src/public
directory, where all the relevant icons, such as the logo and media-related icons for movies, series, and live sections, are stored. Simply replace the existing files with your new icons by ensuring that the new files have the same names as the ones you're replacing, such as logo.png
, movies-icon.png
, series-icon.png
, and live-icon.png
. It’s important to keep the file format and size consistent with the original icons to avoid layout issues or performance problems. After placing your new icons in the folder, the project will automatically use them wherever they are referenced in the code, such as in image tags. There's no need to modify the code if the file names are the same, and you can immediately see the changes by running or refreshing the app. This approach allows you to easily update the visual elements of your project.
Last updated