import { Card } from '@automattic/components'; import { localizeUrl } from '@automattic/i18n-utils'; import { useTranslate } from 'i18n-calypso'; import { useHandleClickLink } from './use-handle-click-link'; import './style.scss'; export const StudioCard = () => { const translate = useTranslate(); const handleClickLink = useHandleClickLink(); return (
{ translate( 'New' ) }
{ translate( 'Studio by WordPress.com' ) }
{ translate( 'A fast, free way to develop locally with WordPress. Share your local sites with clients or colleagues and keep your local development process smooth and simple.' ) }
{ translate( 'Learn more' ) }
); };