Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upadte/domain transfer faqs #79545

Merged
merged 4 commits into from
Jul 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { useTranslate } from 'i18n-calypso';
import { useCallback } from 'react';
import ExternalLinkWithTracking from 'calypso/components/external-link/with-tracking';
import FoldableFAQ from 'calypso/components/foldable-faq';
import { useDispatch, useSelector } from 'calypso/state';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
Expand Down Expand Up @@ -94,7 +95,8 @@ const DomainTransferFAQ: FC = () => {
>
{ translate(
'When you transfer a domain name to WordPress.com, we ensure that the associated name ' +
'server remains unchanged. This means your DNS records will continue to work as they did before the transfer.'
'servers remain unchanged. This means your DNS records and associated services like ' +
'email will continue to work as they did before the transfer.'
) }
</FoldableFAQ>
</li>
Expand Down Expand Up @@ -138,6 +140,32 @@ const DomainTransferFAQ: FC = () => {
) }
</FoldableFAQ>
</li>
<li>
<FoldableFAQ
id="privacy-protection"
question={ translate(
'It looks like I am being charged, I thought the first year was free?'
) }
onToggle={ onFaqToggle }
className="domain-transfer-faq__section"
>
{ translate(
'We offer a free first year for all domains being transferred in from Google Domains, but some domain extensions may not ' +
'automatically show up. Please {{ExternalLinkWithTracking}}contact our support team{{/ExternalLinkWithTracking}} for assistance.',
{
components: {
ExternalLinkWithTracking: (
<ExternalLinkWithTracking
icon={ false }
href="https://wordpress.com/help"
tracksEventName="domain_transfer_faq_support_link_click"
/>
),
},
}
) }
</FoldableFAQ>
</li>
</ul>
</section>
</>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,7 @@
padding: 16px 0;
}
.foldable-faq__question-text {
/* stylelint-disable-next-line scales/font-sizes */
font-size: 1.15rem;
font-size: 1rem;
}
h2 {
font-family: Recoleta, "Noto Serif", Georgia, "Times New Roman", Times, serif;
Expand Down