/* eslint-disable react/jsx-no-target-blank */ import { VFC } from 'react'; import { List, ListItem, ListItemText, Grid, styled } from '@mui/material'; import useUiConfig from 'hooks/api/getters/useUiConfig/useUiConfig'; import { ApiDetails } from './ApiDetails/ApiDetails'; import { FooterTitle } from './FooterTitle'; import { focusable } from 'themes/themeStyles'; const StyledFooter = styled('footer')(({ theme }) => ({ padding: theme.spacing(4, 8), width: '100%', flexGrow: 1, zIndex: 100, backgroundColor: theme.palette.background.paper, })); const StyledList = styled(List)({ padding: 0, margin: 0, }); const StyledListItem = styled(ListItem)(({ theme }) => ({ padding: 0, margin: 0, '& a': { ...focusable(theme), textDecoration: 'none', color: theme.palette.text.primary, '&:hover': { textDecoration: 'underline', }, }, })); export const Footer: VFC = () => { const { uiConfig } = useUiConfig(); return (
Server SDKs Node.js } /> Java } /> Go } /> {' '} Rust } /> {' '} Ruby } /> {' '} Python } /> .NET } /> PHP } /> All SDKs } />
Frontend SDKs Unleash Proxy } /> JavaScript } /> React } /> Next.js } /> Vue } /> iOS } /> Android } /> Flutter } />
About getunleash.io } /> Twitter } /> LinkedIn } /> GitHub } /> Slack Community } />
); }; export default Footer;