React footer component is an additional navigation used for displaying general information that a user might want to access from any page within your site. It is a place to display boilerplate text about the site, company info, copyrights, links to a contact form, sitemap, FAQ and other such resources.
1<CFooter>2 <div>3 <CLink href="https://coreui.io">CoreUI</CLink>4 <span>© 2021 creativeLabs.</span>5 </div>6 <div>7 <span>Powered by</span>8 <CLink href="https://coreui.io">CoreUI</CLink>9 </div>10</CFooter>
1import { CFooter } from '@coreui/react'2// or3import CFooter from '@coreui/react/src/components/footer/CFooter'
Property | Description | Type | Default |
---|---|---|---|
className | A string of all className you want applied to the base component. | string | - |
position | Place footer in non-static positions. | 'fixed' | 'sticky' | - |