import { FC } from 'react' import { Text, Box, Flex, Anchor, Button } from '../primitives' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faTwitter } from '@fortawesome/free-brands-svg-icons' type SectionTitleProps = { title: string } const SectionTitle: FC = ({ title }) => ( {title} ) type SectionLinkProps = { name: string href: string } const SectionLink: FC = ({ name, href }) => ( {name} ) const developerSectionLinks = [ { name: 'Docs', href: 'https://www.pepecoin.io/', }, { name: 'Github', href: 'https://github.com/memeticofficial', }, ] // const companySectionLinks = [ // { // name: 'Terms of Use', // href: 'https://www.booboobaabaa.as/', // }, // { // name: 'Privacy Policy', // href: 'https://www..as/', // }, //] export const Footer = () => { return ( {developerSectionLinks.map((props) => ( ))} {/* {companySectionLinks.map((props) => ( ))} */} ) }