FooterFirstSection
This component is a column section component that wrappers content (FooterTitle, FooterText and FooterLink are recommended) and composes the footer component by itself. This same component logic applies to FooterSecondSection, FooterThirdSection, and FooterFourthSection components.
FooterTitle
FooterLinkProps:
content
Description: Title Title to display. Type: String. Required.
style
Description: FooterFirstSection style. Type: CSS Properties.
className
Description: FooterFirstSection className. Type: String.
Code
import { FooterTitle } from '../components/Elements/Footer/FooterTitle'; import { FooterLink } from '../components/Elements/Footer/FooterLink'; <FooterFirstSectionComponent> <FooterTitle content='FooterTitle' /> <FooterLink content='FooterLink' url='/' style={{ color: theme.colors.text }} /> </FooterFirstSectionComponent>