Dashboard
Default
- The default Footer is set by the design and implemented using the following code:
import Footer from '../components/partials/dashboard/footerstyle/footer';
const Default = () => {
return (
<Fragment>
<div >
<Footer />
</div>
</Fragment>
}
Landing Page
Footer
- We use many different type of Footer in our project.
- To Get The Footer file Navigate to ../src/component/landing-modules/partial/footer this path.
- The default footer is set by the design and implemented using the following code:
import Footer1 from "@/components/landing-modules/partials/footer/footer-1";
const Footer = () => {
return (
<Fragment>
<div >
<Footer1 />
</div>
</Fragment>
)
}