import React from 'react'; import { useTranslation } from 'react-i18next'; import { normalize } from '../../../util/text'; import { NowIcon } from '../../Icons'; import { Card, Repeater, DedicatedAvailability } from '../core'; const VercelCard: React.FC<{ query: string }> = ({ query }) => { const { t } = useTranslation(); const normalizedQuery = normalize(query, { allowUnderscore: false, }); const lowerCase = normalizedQuery.toLowerCase(); const names = [lowerCase]; return ( {(name) => ( } /> )} ); }; export default VercelCard;