Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to change the title and icon in react app?

I am making a react app. But in the title bar, it is showing 'React App' with React logo. I want to change it to my website name and logo, and how can I do that ?

like image 896
idk Avatar asked Sep 13 '25 07:09

idk


2 Answers

If you want to change the title, you can go to: public/index.html, and then change the <title>React App </title>

To change your logo, go to the public folder and change the favicon.ico.

If you follow these steps, your logo and title will get changed.

If it helps you, please mark as accepted answer.

like image 172
Python Avatar answered Sep 16 '25 01:09

Python


you can change title and icon on public/index.html in react project.

<head>
    ...
    ...
    <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
    <title>React App</title>
    ...
    ...
</head>

enter image description here

like image 40
Hacı Celal Aygar Avatar answered Sep 16 '25 02:09

Hacı Celal Aygar