Footer

Beta
Provides additional information about products and features and provides links with actions to take.
Access to Fuegokit npm packages, source code repositories, and some content is limited to Appfire staff. Log in with Slack to continue.

Import

import {FooterSection, FooterCardGrid, FooterTitle, FooterNav} from '@fuegokit/react'

Usage

Each FooterNav.Item should render a title, caption, actions array, and tracking object:

Action object

// action object:
const footerActionObject = {
type: 'EXTERNAL',
url: 'https://appfire.com',
label: 'Footer action object',
tracking: {
destination: 'some-destination-string',
type: 'link'
}
// navItem
const navItem = {
type: 'EXTERNAL',
url: 'https://appfire.com',
label: 'Atlassian Community',
tracking: {
destination: 'some-destination-string',
type: 'link'
}

Example