forked from WPMedia/arc-themes-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.js
105 lines (105 loc) · 1.94 KB
/
footer.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
99
100
101
102
103
104
105
// eslint-disable-next-line import/prefer-default-export
export const footerContentMock = {
children: [
{
_id: "terms-of-use",
name: "Terms of Use",
children: [
{
display_name: "Terms of Service",
url: "www.some-website",
_id: "column-item-1",
node_type: "link",
},
{
display_name: "RSS Terms of Service",
url: "www.some-website2",
_id: "column-item-2",
node_type: "link",
},
{
display_name: "Some other Terms of Service",
url: "www.some-website3",
_id: "column-item-3",
node_type: "link",
},
],
},
{
_id: "contact-us",
name: "Contact Us",
children: [
{
display_name: "Phone",
url: "www.phone.com",
_id: "column-item-4",
node_type: "link",
},
{
display_name: "Email",
url: "www.email.com",
_id: "column-item-5",
node_type: "link",
},
{
display_name: "Fax",
url: "www.who-uses-fax.com",
_id: "column-item-6",
node_type: "link",
},
],
},
{
_id: "about-us",
name: "About Us",
children: [
{
display_name: "Events",
url: "www.events.com",
_id: "column-item-7",
node_type: "link",
},
{
display_name: "Careers",
url: "www.plz-hire-me.com",
_id: "column-item-8",
node_type: "link",
},
{
display_name: "The Team",
url: "www.the-world.com",
_id: "column-item-9",
node_type: "link",
},
{
display_name: "External Link",
url: "https://www.the-world.com",
_id: "column-item-10",
node_type: "link",
},
],
},
{
_id: "get-us",
name: "",
children: [
{
name: "Why Our Product",
url: "www.plz-buy-our-products.com",
_id: "column-item-11",
node_type: "",
},
{
name: "Pricing",
url: "www.the-dollars.com",
_id: "column-item-12",
node_type: "",
},
],
},
{
_id: "blank-colum",
name: "",
},
],
};