import React from 'react' import { useTranslation } from 'react-i18next' import { FaGithub } from 'react-icons/fa' import { Card, Repeater, DedicatedAvailability } from '../Cards' export default function GithubCard({ query }) { const { t } = useTranslation() const lowerCase = query.toLowerCase() const names = [query] const moreNames = [ `${lowerCase}hq`, `${lowerCase}-team`, `${lowerCase}-org`, `${lowerCase}-js`, ] return ( {(name) => ( } /> )} ) }