umwd-components 0.1.65 → 0.1.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/components/Page.js
CHANGED
|
@@ -10,7 +10,7 @@ function blockRenderer(block) {
|
|
|
10
10
|
switch (block.__component) {
|
|
11
11
|
case "layout.hero-section":
|
|
12
12
|
return <HeroSection key={block.id} data={block} />;
|
|
13
|
-
case "layout.
|
|
13
|
+
case "layout.features-section":
|
|
14
14
|
return <FeatureSection key={block.id} data={block} />;
|
|
15
15
|
case "layout.text-image-section":
|
|
16
16
|
return <TextImageSection key={block.id} data={block} />;
|
|
@@ -15,7 +15,7 @@ export const Orefs = Template.bind({});
|
|
|
15
15
|
Orefs.args = {
|
|
16
16
|
data: {
|
|
17
17
|
id: 1,
|
|
18
|
-
__component: "custom.
|
|
18
|
+
__component: "custom.features-section",
|
|
19
19
|
title: "Orefs",
|
|
20
20
|
description: "A place for all your resources",
|
|
21
21
|
feature: [
|
|
@@ -40,7 +40,7 @@ export const AMH = Template.bind({});
|
|
|
40
40
|
AMH.args = {
|
|
41
41
|
data: {
|
|
42
42
|
id: 2,
|
|
43
|
-
__component: "custom.
|
|
43
|
+
__component: "custom.features-section",
|
|
44
44
|
title: "AMH",
|
|
45
45
|
description: "A place for all your resources",
|
|
46
46
|
feature: [
|
|
@@ -65,7 +65,7 @@ export const UMWD = Template.bind({});
|
|
|
65
65
|
UMWD.args = {
|
|
66
66
|
data: {
|
|
67
67
|
id: 3,
|
|
68
|
-
__component: "custom.
|
|
68
|
+
__component: "custom.features-section",
|
|
69
69
|
title: "UMWD",
|
|
70
70
|
description: "A place for all your resources",
|
|
71
71
|
feature: [
|
|
@@ -34,7 +34,7 @@ HelloWorld.args = {
|
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
36
|
id: 2,
|
|
37
|
-
__component: "layout.
|
|
37
|
+
__component: "layout.features-section",
|
|
38
38
|
title: "AMH",
|
|
39
39
|
description: "A place for all your resources",
|
|
40
40
|
feature: [
|
|
@@ -50,6 +50,12 @@ HelloWorld.args = {
|
|
|
50
50
|
subHeading: "A place for all your resources",
|
|
51
51
|
icon: "CHECK_ICON",
|
|
52
52
|
},
|
|
53
|
+
{
|
|
54
|
+
id: 3,
|
|
55
|
+
heading: "Contact",
|
|
56
|
+
subHeading: "A place for all your resources",
|
|
57
|
+
icon: "CLOCK_ICON",
|
|
58
|
+
},
|
|
53
59
|
],
|
|
54
60
|
},
|
|
55
61
|
{
|