Default Header
The default header is set by the design and implemented using the following code:
Import the HeaderDefault component at the top of your
file.FrontendLayout.tsx
import HeaderDefault from "../components/partials/HeaderDefault.tsx";
Inside your FrontendLayout component where you want the Header to be displayed, use the HeaderDefault component.
<div className="main-container"> <HeaderDefault/> </div>