Template Logo
-
The Logo component can be found in the
with your own logo SVG image OR logo image URL.src/components/logo.jsx
-
Then user has to call logo component wherever logo has to show eg.
public/assets/
You can add a image URL icon to your Website using the following code:
<Link to="/" className="navbar-brand m-0">
<span className="logo-normal">
<img src={LogoImg} alt="logo" className="img-fluid" loading="lazy" />
</span>
</Link>
You can call logo component wherever logo has to show:
<Logo />