
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
@financial-times/dotcom-ui-footer
Advanced tools
This package provides components which render variations on the footer component for FT.com.
This package provides components which render variations on the footer component for FT.com.
This package is compatible with Node 12+ and is distributed on npm.
npm install --save @financial-times/dotcom-ui-footer
After installing the package you will need to configure your application to fetch data from the Next Navigation API required to render these UI components. Page Kit provides two packages for this:
dotcom-middleware-navigation
(if you are using Express)dotcom-server-navigation
(if you are not using Express)This package provides two UI components to render different parts and styles of the FT.com footer:
<Footer />
the full footer with all navigation links and branding.<LegalFooter />
a simple footer used to brand pages and link to the necessary legal pages.Example:
import { Footer } from '@financial-times/dotcom-ui-footer'
<Footer data={navigationData} />
Please note that the footer components are designed to be used on the server-side and should not be rendered on the client-side. Although it is possible to render them on the client-side there is usually no reason to do so and it's not officially supported.
Once you are rendering the footer components in your page you will need to initialise the client-side code to add styles and interactive behaviour.
To initialise the client-side JavaScript import the package and call the .init()
method:
import * as footer from '@financial-times/dotcom-ui-footer'
footer.init()
This component includes styles written in Sass which can be imported into your application's main Sass stylesheet.
@import '@financial-times/dotcom-ui-footer/styles';
Please note that the exact usage of styles will depend on how you configure your Sass compiler.
All variants require a props object to be passed to the footer component. The component can be configured by setting properties on this object or by passing the desired property directly into the component: <Footer {...footerData} theme="light"/>
.
PROP | TYPE | DEFAULT | DESCRIPTION |
---|---|---|---|
theme | string | 'dark' | Serve the specified variant of the footer - the light theme is a valid alternative. |
legal-only | boolean | false | Serve the shorter, 'legal-only' variant of the footer |
data | object | Navigation data for rendering the footer links fetched from the navigation API |
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.