-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathfaqs.js
98 lines (93 loc) · 3.17 KB
/
faqs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/**
* External dependencies
*/
import { __ } from '@wordpress/i18n';
/**
* Internal dependencies
*/
import FaqsPanel from '~/components/faqs-panel';
const faqItems = [
{
trackId: 'how-does-google-ads-work',
question: __( 'How does Google Ads work?', 'google-listings-and-ads' ),
answer: __(
'Google Ads works by displaying your ad when people search online for the products and services you offer. By leveraging smart technology, Google Ads helps get your ads in front of potential customers at just the moment they’re ready to take action.',
'google-listings-and-ads'
),
},
{
trackId: 'what-is-a-product-feed',
question: __( 'What is a product feed?', 'google-listings-and-ads' ),
answer: __(
'Your product feed is the central data source that contains a list of products you want to advertise through Merchant Center. By default, Google syncs all active products from your WooCommerce inventory. You can choose to exclude products later after this setup.',
'google-listings-and-ads'
),
},
{
trackId: 'how-much-does-google-ads-cost',
question: __(
'How much does Google Ads cost?',
'google-listings-and-ads'
),
answer: __(
'With Google Ads, you decide how much to spend. There’s no minimum spend, and no time commitment. Your costs may vary from day to day, but you won’t be charged more than your daily budget times the number of days in a month. You pay only for the actual clicks and calls that your ad receives.',
'google-listings-and-ads'
),
},
{
trackId: 'where-will-my-products-appear',
question: __(
'Where will my products appear?',
'google-listings-and-ads'
),
answer: (
<>
<div>
{ __(
'If you’re selling in the US, then eligible free listings can appear in search results across Google Search, Google Images, and the Google Shopping tab. If you’re selling outside the US, free listings will appear on the Shopping tab.',
'google-listings-and-ads'
) }
</div>
<div>
{ __(
'If you’re running a Performance Max Campaign, your approved products can appear on Google Search, Google Maps, the Shopping tab, Gmail, Youtube, the Google Display Network, and Discover feed.',
'google-listings-and-ads'
) }
</div>
</>
),
},
{
trackId: 'how-long-until-i-see-results-with-google-ads',
question: __(
'How long until I see results with Google Ads?',
'google-listings-and-ads'
),
answer: __(
'Google’s Performance Max campaigns are powered by machine learning models. These models train and adapt based on the data you provide in your campaign. This means performance optimization can take time. Typically, this learning process takes 1—2 weeks.',
'google-listings-and-ads'
),
},
];
/**
* Clicking on faq items to collapse or expand it in the Onboarding Flow or creating/editing a campaign
*
* @event gla_setup_ads_faq
* @property {string} id FAQ identifier
* @property {string} action (`expand`|`collapse`)
*/
/**
* Renders a toggleable FAQs about Google Ads.
*
* @fires gla_setup_ads_faq
*/
const Faqs = () => {
return (
<FaqsPanel
trackName="gla_setup_ads_faq"
context="setup-ads"
faqItems={ faqItems }
/>
);
};
export default Faqs;