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