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 FrontendLayout.tsx file.

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>