Footer Component
The Footer component is a reusable component designed to display a footer section in your app. This component can be easily integrated into any part of your application. It is completely customizable.
UI Preview
![Faq section - Web Light](/_astro/footer-web-light.CTj2cniM_ZYveb7.webp)
![Faq section - Web Dark](/_astro/footer-web-dark.BI-wO6pG_1pYrWi.webp)
![Faq section - Native Light](/_astro/footer-web-light.CTj2cniM_ZYveb7.webp)
![Faq section - Native Dark](/_astro/footer-web-dark.BI-wO6pG_1pYrWi.webp)
Usage
To use the Footer
component, import it. Here is a basic example:
import React from "react";
import Footer from "@app-launch-kit/components/custom/footer/BasicFooter";
export const FooterComponent = () => { return <Footer />;};