import { Card } from '@automattic/components'; import { localizeUrl } from '@automattic/i18n-utils'; import { useTranslate } from 'i18n-calypso'; import InlineSupportLink from 'calypso/components/inline-support-link'; import { useHandleClickLink } from './use-handle-click-link'; import './style.scss'; export const GitHubDeploymentCard = () => { const translate = useTranslate(); const handleClickLink = useHandleClickLink(); return (
{ translate( 'New' ) }
{ translate( 'GitHub Deployments' ) }
{ translate( 'Speed up your development workflow and take version control further by connecting your WordPress.com sites and GitHub repos. Choose from fully automatic or on-demand deployments.' ) }
); };