/** * * StaticLinks * */ import React from 'react'; import { useIntl } from 'react-intl'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import StyledLink from './StyledLink'; function StaticLinks() { const { formatMessage } = useIntl(); const staticLinks = [ { icon: 'book', label: formatMessage({ id: 'app.components.LeftMenuFooter.documentation' }), destination: 'https://strapi.io/documentation', }, { icon: 'file', label: formatMessage({ id: 'app.static.links.cheatsheet' }), destination: 'https://strapi-showcase.s3-us-west-2.amazonaws.com/CheatSheet.pdf', } ]; return ( ); } export default StaticLinks;