@ilo-org/react 0.12.0 → 0.14.0

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.
Files changed (260) hide show
  1. package/.storybook/main.ts +41 -0
  2. package/.storybook/manager-head.html +92 -0
  3. package/.storybook/manager.ts +6 -0
  4. package/.storybook/preview-head.html +5 -0
  5. package/.storybook/preview.tsx +81 -0
  6. package/.storybook/styles.scss +25 -0
  7. package/.storybook/theme.ts +46 -0
  8. package/.turbo/turbo-build:lib.log +15 -0
  9. package/CHANGELOG.md +43 -0
  10. package/lib/cjs/components/Cards/CardGroup/CardGroup.js +41 -0
  11. package/lib/cjs/components/Cards/CardGroup/index.js +796 -0
  12. package/lib/cjs/components/Cards/DataCard/DataCard.js +27 -0
  13. package/lib/cjs/components/Cards/DataCard/index.js +73 -19
  14. package/lib/cjs/components/Cards/DetailCard/DetailCard.js +20 -0
  15. package/lib/cjs/components/Cards/DetailCard/index.js +17 -12
  16. package/lib/cjs/components/Cards/FactlistCard/FactListCard.js +22 -0
  17. package/lib/cjs/components/Cards/FactlistCard/index.js +16 -15
  18. package/lib/cjs/components/Cards/FeatureCard/FeatureCard.js +24 -0
  19. package/lib/cjs/components/Cards/FeatureCard/index.js +31 -16
  20. package/lib/cjs/components/Cards/MultilinkCard/MultiLinkCard.js +24 -0
  21. package/lib/cjs/components/Cards/MultilinkCard/index.js +35 -16
  22. package/lib/cjs/components/Cards/PromoCard/PromoCard.js +23 -0
  23. package/lib/cjs/components/Cards/PromoCard/index.js +18 -15
  24. package/lib/cjs/components/Cards/StatCard/StatCard.js +21 -0
  25. package/lib/cjs/components/Cards/StatCard/index.js +15 -13
  26. package/lib/cjs/components/Cards/TextCard/TextCard.js +23 -0
  27. package/lib/cjs/components/Cards/TextCard/index.js +22 -17
  28. package/lib/cjs/components/Footer/Footer.js +1 -1
  29. package/lib/cjs/components/List/List.js +9 -11
  30. package/lib/cjs/components/List/ListItem.js +4 -7
  31. package/lib/cjs/components/List/index.js +1 -2
  32. package/lib/cjs/components/Navigation/Navigation.js +3 -3
  33. package/lib/cjs/components/Pagination/Pagination.js +1 -1
  34. package/lib/cjs/components/index.js +10 -13
  35. package/lib/cjs/index.js +10 -13
  36. package/lib/esm/components/Cards/CardGroup/CardGroup.js +39 -0
  37. package/lib/esm/components/Cards/CardGroup/index.js +793 -0
  38. package/lib/esm/components/Cards/DataCard/DataCard.js +25 -0
  39. package/lib/esm/components/Cards/DataCard/index.js +72 -19
  40. package/lib/esm/components/Cards/DetailCard/DetailCard.js +18 -0
  41. package/lib/esm/components/Cards/DetailCard/index.js +16 -12
  42. package/lib/esm/components/Cards/FactlistCard/FactListCard.js +20 -0
  43. package/lib/esm/components/Cards/FactlistCard/index.js +15 -15
  44. package/lib/esm/components/Cards/FeatureCard/FeatureCard.js +22 -0
  45. package/lib/esm/components/Cards/FeatureCard/index.js +30 -16
  46. package/lib/esm/components/Cards/MultilinkCard/MultiLinkCard.js +22 -0
  47. package/lib/esm/components/Cards/MultilinkCard/index.js +34 -16
  48. package/lib/esm/components/Cards/PromoCard/PromoCard.js +21 -0
  49. package/lib/esm/components/Cards/PromoCard/index.js +17 -15
  50. package/lib/esm/components/Cards/StatCard/StatCard.js +19 -0
  51. package/lib/esm/components/Cards/StatCard/index.js +14 -13
  52. package/lib/esm/components/Cards/TextCard/TextCard.js +21 -0
  53. package/lib/esm/components/Cards/TextCard/index.js +21 -17
  54. package/lib/esm/components/Footer/Footer.js +1 -1
  55. package/lib/esm/components/List/List.js +10 -12
  56. package/lib/esm/components/List/ListItem.js +4 -7
  57. package/lib/esm/components/List/index.js +1 -2
  58. package/lib/esm/components/Navigation/Navigation.js +3 -3
  59. package/lib/esm/components/Pagination/Pagination.js +1 -1
  60. package/lib/esm/components/index.js +9 -11
  61. package/lib/esm/index.js +9 -11
  62. package/lib/types/react/src/components/Cards/CardGroup/CardGroup.args.d.ts +13 -0
  63. package/lib/types/react/src/components/Cards/CardGroup/CardGroup.props.d.ts +58 -0
  64. package/lib/types/react/src/components/Cards/CardGroup/index.d.ts +3 -0
  65. package/lib/types/react/src/components/Cards/DataCard/DataCard.args.d.ts +2 -0
  66. package/lib/types/react/src/components/Cards/DataCard/DataCard.d.ts +4 -0
  67. package/lib/types/react/src/components/Cards/DataCard/DataCard.props.d.ts +50 -0
  68. package/lib/types/react/src/components/Cards/DataCard/index.d.ts +3 -4
  69. package/lib/types/react/src/components/Cards/DetailCard/DetailCard.args.d.ts +3 -0
  70. package/lib/types/react/src/components/Cards/DetailCard/DetailCard.d.ts +4 -0
  71. package/lib/types/react/src/components/Cards/DetailCard/DetailCard.props.d.ts +35 -0
  72. package/lib/types/react/src/components/Cards/DetailCard/index.d.ts +3 -4
  73. package/lib/types/react/src/components/Cards/FactlistCard/FactListCard.args.d.ts +3 -0
  74. package/lib/types/react/src/components/Cards/FactlistCard/FactListCard.d.ts +4 -0
  75. package/lib/types/react/src/components/Cards/FactlistCard/FactListCard.props.d.ts +16 -0
  76. package/lib/types/react/src/components/Cards/FactlistCard/index.d.ts +3 -4
  77. package/lib/types/react/src/components/Cards/FeatureCard/FeatureCard.args.d.ts +3 -0
  78. package/lib/types/react/src/components/Cards/FeatureCard/FeatureCard.d.ts +4 -0
  79. package/lib/types/react/src/components/Cards/FeatureCard/FeatureCard.props.d.ts +31 -0
  80. package/lib/types/react/src/components/Cards/FeatureCard/index.d.ts +3 -4
  81. package/lib/types/react/src/components/Cards/MultilinkCard/MultiLinkCard.d.ts +4 -0
  82. package/lib/types/react/src/components/Cards/MultilinkCard/MultilinkCard.args.d.ts +2 -0
  83. package/lib/types/react/src/components/Cards/MultilinkCard/MultilinkCard.props.d.ts +25 -0
  84. package/lib/types/react/src/components/Cards/MultilinkCard/index.d.ts +3 -4
  85. package/lib/types/react/src/components/Cards/PromoCard/PromoCard.args.d.ts +3 -0
  86. package/lib/types/react/src/components/Cards/PromoCard/PromoCard.d.ts +4 -0
  87. package/lib/types/react/src/components/Cards/PromoCard/PromoCard.props.d.ts +30 -0
  88. package/lib/types/react/src/components/Cards/PromoCard/index.d.ts +3 -4
  89. package/lib/types/react/src/components/Cards/StatCard/StatCard.args.d.ts +3 -0
  90. package/lib/types/react/src/components/Cards/StatCard/StatCard.d.ts +4 -0
  91. package/lib/types/react/src/components/Cards/StatCard/StatCard.props.d.ts +18 -0
  92. package/lib/types/react/src/components/Cards/StatCard/index.d.ts +3 -4
  93. package/lib/types/react/src/components/Cards/TextCard/TextCard.args.d.ts +3 -0
  94. package/lib/types/react/src/components/Cards/TextCard/TextCard.d.ts +4 -0
  95. package/lib/types/react/src/components/Cards/TextCard/TextCard.props.d.ts +26 -0
  96. package/lib/types/react/src/components/Cards/TextCard/index.d.ts +3 -4
  97. package/lib/types/react/src/components/List/List.props.d.ts +2 -9
  98. package/lib/types/react/src/components/List/ListItem.props.d.ts +0 -6
  99. package/lib/types/react/src/components/index.d.ts +1 -1
  100. package/lib/types/react/src/types/index.d.ts +4 -2
  101. package/package.json +32 -12
  102. package/public/react.svg +8 -0
  103. package/rollup.config.mjs +2 -0
  104. package/src/__tests__/Accordion.test.tsx +16 -0
  105. package/src/__tests__/Button.test.tsx +60 -0
  106. package/src/__tests__/Callout.test.tsx +43 -0
  107. package/src/__tests__/ContextMenu.test.tsx +19 -0
  108. package/src/__tests__/Dropdown.test.tsx +38 -0
  109. package/src/__tests__/Heading.test.tsx +51 -0
  110. package/src/__tests__/Image.test.tsx +21 -0
  111. package/src/__tests__/LinkList.test.tsx +17 -0
  112. package/src/__tests__/List.test.tsx +25 -0
  113. package/src/__tests__/Loading.test.tsx +33 -0
  114. package/src/__tests__/Notification.test.tsx +39 -0
  115. package/src/__tests__/Pagination.test.tsx +58 -0
  116. package/src/__tests__/Profile.test.tsx +48 -0
  117. package/src/__tests__/ReadMore.test.tsx +43 -0
  118. package/src/__tests__/RichText.test.tsx +16 -0
  119. package/src/__tests__/SearchField.test.tsx +35 -0
  120. package/src/__tests__/TableOfContents.test.tsx +12 -0
  121. package/src/__tests__/Tag.test.tsx +10 -0
  122. package/src/components/Cards/{CardGroup.args.ts → CardGroup/CardGroup.args.ts} +299 -437
  123. package/src/components/Cards/CardGroup/CardGroup.props.ts +78 -0
  124. package/src/components/Cards/CardGroup/CardGroup.tsx +54 -0
  125. package/src/components/Cards/CardGroup/index.tsx +3 -0
  126. package/src/components/Cards/DataCard/DataCard.args.ts +69 -0
  127. package/src/components/Cards/DataCard/DataCard.props.ts +60 -0
  128. package/src/components/Cards/DataCard/DataCard.tsx +107 -0
  129. package/src/components/Cards/DataCard/index.tsx +3 -107
  130. package/src/components/Cards/DetailCard/DetailCard.args.ts +17 -0
  131. package/src/components/Cards/DetailCard/DetailCard.props.ts +43 -0
  132. package/src/components/Cards/DetailCard/DetailCard.tsx +62 -0
  133. package/src/components/Cards/DetailCard/index.tsx +3 -62
  134. package/src/components/Cards/FactlistCard/FactListCard.args.ts +14 -0
  135. package/src/components/Cards/FactlistCard/FactListCard.props.ts +19 -0
  136. package/src/components/Cards/FactlistCard/FactListCard.tsx +42 -0
  137. package/src/components/Cards/FactlistCard/index.tsx +3 -42
  138. package/src/components/Cards/FeatureCard/FeatureCard.args.ts +30 -0
  139. package/src/components/Cards/FeatureCard/FeatureCard.props.ts +38 -0
  140. package/src/components/Cards/FeatureCard/FeatureCard.tsx +69 -0
  141. package/src/components/Cards/FeatureCard/index.tsx +3 -69
  142. package/src/components/Cards/MultilinkCard/MultiLinkCard.tsx +76 -0
  143. package/src/components/Cards/MultilinkCard/MultilinkCard.args.ts +33 -0
  144. package/src/components/Cards/MultilinkCard/MultilinkCard.props.ts +30 -0
  145. package/src/components/Cards/MultilinkCard/index.tsx +3 -76
  146. package/src/components/Cards/PromoCard/PromoCard.args.ts +19 -0
  147. package/src/components/Cards/PromoCard/PromoCard.props.ts +36 -0
  148. package/src/components/Cards/PromoCard/PromoCard.tsx +60 -0
  149. package/src/components/Cards/PromoCard/index.tsx +3 -60
  150. package/src/components/Cards/StatCard/StatCard.args.ts +14 -0
  151. package/src/components/Cards/StatCard/StatCard.props.ts +21 -0
  152. package/src/components/Cards/StatCard/StatCard.tsx +36 -0
  153. package/src/components/Cards/StatCard/index.tsx +3 -36
  154. package/src/components/Cards/TextCard/TextCard.args.ts +21 -0
  155. package/src/components/Cards/TextCard/TextCard.props.ts +32 -0
  156. package/src/components/Cards/TextCard/TextCard.tsx +62 -0
  157. package/src/components/Cards/TextCard/index.tsx +3 -63
  158. package/src/components/Footer/Footer.args.ts +4 -16
  159. package/src/components/Footer/Footer.tsx +41 -37
  160. package/src/components/List/List.props.ts +2 -10
  161. package/src/components/List/List.tsx +17 -22
  162. package/src/components/List/ListItem.props.ts +0 -7
  163. package/src/components/List/ListItem.tsx +6 -11
  164. package/src/components/Navigation/Navigation.tsx +5 -5
  165. package/src/components/Pagination/Pagination.tsx +2 -1
  166. package/src/components/index.ts +1 -1
  167. package/src/setup.ts +6 -0
  168. package/src/stories/Accordion/Accordion.stories.tsx +145 -0
  169. package/src/stories/Breadcrumb/Breadcrumb.mdx +17 -0
  170. package/src/stories/Breadcrumb/Breadcrumb.stories.tsx +20 -0
  171. package/src/stories/Button/Button.mdx +94 -0
  172. package/src/stories/Button/Button.stories.tsx +68 -0
  173. package/src/stories/Callout/Callout.mdx +35 -0
  174. package/src/stories/Callout/Callout.stories.tsx +43 -0
  175. package/src/stories/Card/DataCard.stories.tsx +45 -0
  176. package/src/stories/Card/DetailCard.stories.tsx +41 -0
  177. package/src/stories/Card/FactlistCard.stories.tsx +48 -0
  178. package/src/stories/Card/FeatureCard.stories.tsx +56 -0
  179. package/src/stories/Card/MultilinkCard.stories.tsx +48 -0
  180. package/src/stories/Card/PromoCard.stories.tsx +48 -0
  181. package/src/stories/Card/StatCard.stories.tsx +45 -0
  182. package/src/stories/Card/TextCard.stories.tsx +45 -0
  183. package/src/stories/CardGroup/CardGroup.mdx +17 -0
  184. package/src/stories/CardGroup/CardGroup.stories.tsx +50 -0
  185. package/src/stories/Checkbox/Checkbox.stories.tsx +118 -0
  186. package/src/stories/ContextMenu/ContextMenu.stories.tsx +83 -0
  187. package/src/stories/DatePicker/DatePicker.stories.tsx +110 -0
  188. package/src/stories/Dropdown/Dropdown.stories.tsx +145 -0
  189. package/src/stories/Empty/Empty.stories.tsx +53 -0
  190. package/src/stories/Fieldset/Fieldset.stories.tsx +167 -0
  191. package/src/stories/FileUpload/FileUpload.stories.tsx +103 -0
  192. package/src/stories/Footer/Footer.mdx +17 -0
  193. package/src/stories/Footer/Footer.stories.tsx +15 -0
  194. package/src/stories/Form/Form.mdx +58 -0
  195. package/src/stories/Form/Form.stories.tsx +162 -0
  196. package/src/stories/GetStarted.mdx +57 -0
  197. package/src/stories/Heading/Heading.stories.tsx +193 -0
  198. package/src/stories/Hero/Hero.stories.tsx +68 -0
  199. package/src/stories/Image/Image.stories.tsx +50 -0
  200. package/src/stories/Link/Link.stories.tsx +81 -0
  201. package/src/stories/LinkList/LinkList.args.ts +190 -0
  202. package/src/stories/LinkList/LinkList.stories.tsx +60 -0
  203. package/src/stories/List/List.stories.tsx +167 -0
  204. package/src/stories/Loading/Loading.stories.tsx +97 -0
  205. package/src/stories/LocalNav/LocalNav.mdx +17 -0
  206. package/src/stories/LocalNav/LocalNav.stories.tsx +15 -0
  207. package/src/stories/Logo/Logo.stories.tsx +172 -0
  208. package/src/stories/LogoGrid/LogoGrid.stories.tsx +59 -0
  209. package/src/stories/Navigation/Navigation.mdx +17 -0
  210. package/src/stories/Navigation/Navigation.stories.tsx +15 -0
  211. package/src/stories/Notification/Notification.stories.tsx +187 -0
  212. package/src/stories/NumberPicker/NumberPicker.stories.tsx +69 -0
  213. package/src/stories/Pagination/Pagination.stories.tsx +86 -0
  214. package/src/stories/Profile/Profile.stories.tsx +64 -0
  215. package/src/stories/Radio/Radio.stories.tsx +232 -0
  216. package/src/stories/ReadMore/ReadMore.stories.tsx +59 -0
  217. package/src/stories/RichText/RichText.stories.tsx +63 -0
  218. package/src/stories/SearchField/SearchField.stories.tsx +91 -0
  219. package/src/stories/SocialMedia/SocialMedia.stories.tsx +60 -0
  220. package/src/stories/TableOfContents/TableOfContents.stories.tsx +55 -0
  221. package/src/stories/Tabs/Tabs.mdx +17 -0
  222. package/src/stories/Tabs/Tabs.stories.tsx +25 -0
  223. package/src/stories/Tag/Tag.stories.tsx +130 -0
  224. package/src/stories/TextInput/TextInput.stories.tsx +100 -0
  225. package/src/stories/Textarea/Textarea.stories.tsx +147 -0
  226. package/src/stories/Toggle/Toggle.stories.tsx +99 -0
  227. package/src/stories/Tooltip/Tooltip.stories.tsx +82 -0
  228. package/src/stories/Video/Video.stories.tsx +71 -0
  229. package/src/stories/Welcome.stories.mdx +37 -0
  230. package/src/stories/assets/code-brackets.svg +1 -0
  231. package/src/stories/assets/colors.svg +1 -0
  232. package/src/stories/assets/comments.svg +1 -0
  233. package/src/stories/assets/direction.svg +1 -0
  234. package/src/stories/assets/flow.svg +1 -0
  235. package/src/stories/assets/plugin.svg +1 -0
  236. package/src/stories/assets/repo.svg +1 -0
  237. package/src/stories/assets/stackalt.svg +1 -0
  238. package/src/stories/welcome.scss +133 -0
  239. package/src/types/index.ts +6 -2
  240. package/lib/cjs/ListCtx-14aa546f.js +0 -9
  241. package/lib/cjs/components/Cards/Card.js +0 -40
  242. package/lib/cjs/components/Cards/CardGroup.js +0 -33
  243. package/lib/cjs/components/Cards/index.js +0 -37
  244. package/lib/esm/ListCtx-da435fdf.js +0 -6
  245. package/lib/esm/components/Cards/Card.js +0 -38
  246. package/lib/esm/components/Cards/CardGroup.js +0 -31
  247. package/lib/esm/components/Cards/index.js +0 -22
  248. package/lib/types/react/src/components/Cards/Card.d.ts +0 -4
  249. package/lib/types/react/src/components/Cards/Card.props.d.ts +0 -307
  250. package/lib/types/react/src/components/Cards/CardGroup.props.d.ts +0 -16
  251. package/lib/types/react/src/components/Cards/index.d.ts +0 -11
  252. package/lib/types/react/src/components/List/ListCtx.d.ts +0 -4
  253. package/src/components/Cards/Card.args.ts +0 -220
  254. package/src/components/Cards/Card.props.ts +0 -382
  255. package/src/components/Cards/Card.tsx +0 -36
  256. package/src/components/Cards/CardGroup.props.ts +0 -19
  257. package/src/components/Cards/CardGroup.tsx +0 -54
  258. package/src/components/Cards/index.ts +0 -22
  259. package/src/components/List/ListCtx.ts +0 -7
  260. /package/lib/types/react/src/components/Cards/{CardGroup.d.ts → CardGroup/CardGroup.d.ts} +0 -0
@@ -1,19 +1,16 @@
1
1
  import { CardGroupProps } from "./CardGroup.props";
2
2
 
3
- const textCardGroup: CardGroupProps = {
3
+ export const textCardGroup: CardGroupProps = {
4
4
  cards: [
5
5
  {
6
- type: "text",
7
- title: "Why we need greater social justice",
8
- eyebrow: "Podcast",
6
+ title: "ILO welcomes first global agreement on working conditions",
7
+ eyebrow: "Press release",
9
8
  date: {
10
9
  human: "20 September 2022",
11
10
  unix: "1670389200",
12
11
  },
13
12
  theme: "dark",
14
13
  link: "https:/www.ilo.org",
15
- intro:
16
- "A toxic combination of mutually-reinforcing crises – inflation, debt, food and fuel price rises, geopolitical tensions and conflict, climate change – are threatening to increase poverty, inequality and discrimination worldwide.",
17
14
  profile: {
18
15
  avatar: "/ilo-dg.jpg",
19
16
  description:
@@ -21,21 +18,61 @@ const textCardGroup: CardGroupProps = {
21
18
  name: "Gilbert Houngbo",
22
19
  role: "ILO Director-General",
23
20
  },
24
- isvideo: false,
25
- size: "standard",
26
- color: "blue",
27
- cornercut: "cornercut",
28
- alignment: "left",
29
- eventdetails: "",
30
- listitems: [],
31
- linklist: {},
32
- cta: {},
33
- dataset: {},
34
- source: {},
35
- image: "",
21
+ },
22
+ {
23
+ title: "Renewable energy jobs hit 12.7 million globally",
24
+ eyebrow: "Report",
25
+ date: {
26
+ human: "21 September 2022",
27
+ unix: "1670389200",
28
+ },
29
+ theme: "dark",
30
+ link: "https:/www.ilo.org",
31
+ profile: {
32
+ avatar: "/ilo-dg.jpg",
33
+ description:
34
+ "Gilbert Houngbo is the Director-General of the International Labour Organization",
35
+ name: "Gilbert Houngbo",
36
+ role: "ILO Director-General",
37
+ },
38
+ },
39
+ {
40
+ title: "Can digital technology be an equality machine? ",
41
+ eyebrow: "Podcast",
42
+ date: {
43
+ human: "25 September 2022",
44
+ unix: "1670389200",
45
+ },
46
+ theme: "dark",
47
+ link: "https:/www.ilo.org",
48
+ profile: {
49
+ avatar: "/ilo-dg.jpg",
50
+ description:
51
+ "Gilbert Houngbo is the Director-General of the International Labour Organization",
52
+ name: "Gilbert Houngbo",
53
+ role: "ILO Director-General",
54
+ },
55
+ },
56
+ {
57
+ title: "Why we need greater social justice?",
58
+ eyebrow: "Podcast",
59
+ date: {
60
+ human: "31 September 2022",
61
+ unix: "1670389200",
62
+ },
63
+ theme: "dark",
64
+ link: "https:/www.ilo.org",
65
+ profile: {
66
+ avatar: "/ilo-dg.jpg",
67
+ description:
68
+ "Gilbert Houngbo is the Director-General of the International Labour Organization",
69
+ name: "Gilbert Houngbo",
70
+ role: "ILO Director-General",
71
+ },
36
72
  },
37
73
  ],
38
- cardcount: "one",
74
+ cardCount: "three",
75
+ type: "text",
39
76
  cta: {
40
77
  label: "Discover our unique mission",
41
78
  url: "https://www.ilo.org",
@@ -45,87 +82,38 @@ const textCardGroup: CardGroupProps = {
45
82
  const statCardGroup: CardGroupProps = {
46
83
  cards: [
47
84
  {
48
- type: "stat",
49
- title: "Global employment growth down by half in 2023",
50
- eyebrow: "Report",
85
+ title: "Can digital technology be an equality machine?",
51
86
  intro:
52
- "The current global economic slowdown is likely to force more workers to accept lower quality, poorly paid jobs which lack job security and social protection, so accentuating inequalities exacerbated by the COVID-19 crisis.",
53
- color: "blue",
87
+ "A toxic combination of mutually-reinforcing crises inflation, debt, food and fuel price rises, geopolitical tensions and conflict, climate change are threatening to increase poverty, inequality and discrimination worldwide.",
88
+ color: "turquoise",
54
89
  source: {
55
90
  label: "World Employment and Social Outlook: Trends 2023",
56
91
  url: "https://www.ilo.org",
57
92
  },
58
- isvideo: false,
59
- size: "standard",
60
- cornercut: "cornercut",
61
- alignment: "left",
62
- eventdetails: "",
63
- listitems: [],
64
- linklist: {},
65
- cta: {},
66
- dataset: {},
67
- image: "",
68
- link: "",
69
- profile: {},
70
- theme: "light",
71
- date: {},
72
93
  },
73
94
  {
74
- type: "stat",
75
- title: "Global employment growth down by half in 2023",
76
- eyebrow: "Report",
95
+ title: "Renewable energy jobs hit 12.7 million globally",
77
96
  intro:
78
97
  "The current global economic slowdown is likely to force more workers to accept lower quality, poorly paid jobs which lack job security and social protection, so accentuating inequalities exacerbated by the COVID-19 crisis.",
79
- color: "yellow",
98
+ color: "turquoise",
80
99
  source: {
81
100
  label: "World Employment and Social Outlook: Trends 2023",
82
101
  url: "https://www.ilo.org",
83
102
  },
84
- isvideo: false,
85
- size: "standard",
86
- cornercut: "cornercut",
87
- alignment: "left",
88
- eventdetails: "",
89
- listitems: [],
90
- linklist: {},
91
- cta: {},
92
- dataset: {},
93
- image: "",
94
- link: "",
95
- profile: {},
96
- theme: "light",
97
- date: {},
98
103
  },
99
104
  {
100
- type: "stat",
101
- title: "Global employment growth down by half in 2023",
102
- eyebrow: "Report",
105
+ title: "Global employment growth down by half",
103
106
  intro:
104
- "The current global economic slowdown is likely to force more workers to accept lower quality, poorly paid jobs which lack job security and social protection, so accentuating inequalities exacerbated by the COVID-19 crisis.",
105
- color: "green",
107
+ "A toxic combination of mutually-reinforcing crises inflation, debt, food and fuel price rises, geopolitical tensions and conflict, climate change are threatening to increase poverty, inequality and discrimination worldwide.",
108
+ color: "turquoise",
106
109
  source: {
107
110
  label: "World Employment and Social Outlook: Trends 2023",
108
111
  url: "https://www.ilo.org",
109
112
  },
110
- isvideo: false,
111
- size: "standard",
112
- cornercut: "cornercut",
113
- alignment: "left",
114
- eventdetails: "",
115
- listitems: [],
116
- linklist: {},
117
- cta: {},
118
- dataset: {},
119
- image: "",
120
- link: "",
121
- profile: {},
122
- theme: "light",
123
- date: {},
124
113
  },
125
114
  {
126
- type: "stat",
127
- title: "Global employment growth down by half in 2023",
128
- eyebrow: "Report",
115
+ title:
116
+ "ILO welcomes first global agreement on working conditions and rights of professional football players",
129
117
  intro:
130
118
  "The current global economic slowdown is likely to force more workers to accept lower quality, poorly paid jobs which lack job security and social protection, so accentuating inequalities exacerbated by the COVID-19 crisis.",
131
119
  color: "turquoise",
@@ -133,23 +121,10 @@ const statCardGroup: CardGroupProps = {
133
121
  label: "World Employment and Social Outlook: Trends 2023",
134
122
  url: "https://www.ilo.org",
135
123
  },
136
- isvideo: false,
137
- size: "standard",
138
- cornercut: "cornercut",
139
- alignment: "left",
140
- eventdetails: "",
141
- listitems: [],
142
- linklist: {},
143
- cta: {},
144
- dataset: {},
145
- image: "",
146
- link: "",
147
- profile: {},
148
- theme: "light",
149
- date: {},
150
124
  },
151
125
  ],
152
- cardcount: "four",
126
+ cardCount: "three",
127
+ type: "stat",
153
128
  cta: {
154
129
  label: "Discover our unique mission",
155
130
  url: "https://www.ilo.org",
@@ -159,18 +134,13 @@ const statCardGroup: CardGroupProps = {
159
134
  const multilinkCardGroup: CardGroupProps = {
160
135
  cards: [
161
136
  {
162
- type: "multilink",
163
- title:
164
- "ILO welcomes G7 call to make a just transition to a green economy happen",
165
- eyebrow: "High-level meeting",
137
+ title: "ILO welcomes first global agreement on working conditions",
138
+ eyebrow: "Press release",
166
139
  intro:
167
140
  "At the end of their meeting the G7 Labour Ministers highlighted the urgent need to greater focus on rights and occupational safety and health.",
168
141
  image: "/hero.jpg",
169
142
  alignment: "left",
170
- date: {
171
- human: "6 September 2023",
172
- unix: "1670389200",
173
- },
143
+ link: "https:/www.ilo.org",
174
144
  linklist: {
175
145
  headline: "",
176
146
  linkgroup: [
@@ -192,32 +162,76 @@ const multilinkCardGroup: CardGroupProps = {
192
162
  },
193
163
  ],
194
164
  },
195
- isvideo: false,
196
- size: "standard",
197
- color: "blue",
198
- cornercut: "corner",
199
- eventdetails: "",
200
- listitems: [],
201
- cta: {},
202
- dataset: {},
203
- source: {},
204
- theme: "light",
205
- profile: {},
206
- link: "",
207
165
  },
208
166
  {
209
- type: "multilink",
210
167
  title:
211
168
  "ILO welcomes G7 call to make a just transition to a green economy happen",
212
- eyebrow: "High-level meeting",
169
+ eyebrow: "Report",
170
+ intro:
171
+ "A toxic combination of mutually-reinforcing crises inflation, debt, food and fuel price rises, geopolitical tensions and conflict.",
172
+ image: "/hero.jpg",
173
+ alignment: "left",
174
+ link: "https:/www.ilo.org",
175
+ linklist: {
176
+ headline: "",
177
+ linkgroup: [
178
+ {
179
+ links: [
180
+ {
181
+ label: "Read the press release",
182
+ url: "https://www.ilo.org",
183
+ },
184
+ {
185
+ label: "See the statement",
186
+ url: "https://www.ilo.org",
187
+ },
188
+ {
189
+ label: "Remarks to G7 Openening Session",
190
+ url: "https://www.ilo.org",
191
+ },
192
+ ],
193
+ },
194
+ ],
195
+ },
196
+ },
197
+ {
198
+ title: "Telangana and Andhra Pradesh launch pre-departure handbook",
199
+ eyebrow: "Podcast",
213
200
  intro:
214
201
  "At the end of their meeting the G7 Labour Ministers highlighted the urgent need to greater focus on rights and occupational safety and health.",
215
202
  image: "/hero.jpg",
216
203
  alignment: "left",
217
- date: {
218
- human: "16 September 2023",
219
- unix: "1670389200",
204
+ link: "https:/www.ilo.org",
205
+ linklist: {
206
+ headline: "",
207
+ linkgroup: [
208
+ {
209
+ links: [
210
+ {
211
+ label: "Read the press release",
212
+ url: "https://www.ilo.org",
213
+ },
214
+ {
215
+ label: "See the statement",
216
+ url: "https://www.ilo.org",
217
+ },
218
+ {
219
+ label: "Remarks to G7 Openening Session",
220
+ url: "https://www.ilo.org",
221
+ },
222
+ ],
223
+ },
224
+ ],
220
225
  },
226
+ },
227
+ {
228
+ title: "Renewable energy jobs hit 12.7 million globally",
229
+ eyebrow: "High-level meeting",
230
+ intro:
231
+ "At the end of their meeting the G7 Labour Ministers highlighted the urgent need to greater focus on rights and occupational safety and health.",
232
+ image: "/hero.jpg",
233
+ alignment: "left",
234
+ link: "https:/www.ilo.org",
221
235
  linklist: {
222
236
  headline: "",
223
237
  linkgroup: [
@@ -239,21 +253,10 @@ const multilinkCardGroup: CardGroupProps = {
239
253
  },
240
254
  ],
241
255
  },
242
- isvideo: false,
243
- size: "standard",
244
- color: "blue",
245
- cornercut: "corner",
246
- eventdetails: "",
247
- listitems: [],
248
- cta: {},
249
- dataset: {},
250
- source: {},
251
- theme: "light",
252
- profile: {},
253
- link: "",
254
256
  },
255
257
  ],
256
- cardcount: "two",
258
+ type: "multilink",
259
+ cardCount: "three",
257
260
  cta: {
258
261
  label: "Discover our unique mission",
259
262
  url: "https://www.ilo.org",
@@ -263,12 +266,11 @@ const multilinkCardGroup: CardGroupProps = {
263
266
  const promoCardGroup: CardGroupProps = {
264
267
  cards: [
265
268
  {
266
- type: "promo",
267
- title:
268
- "ILO welcomes G7 call to make a just transition to a green economy happen",
269
- eyebrow: "High-level meeting",
270
- theme: "light",
271
- cornercut: "cornercut",
269
+ size: "standard",
270
+ title: "ILO welcomes first global agreement on working conditions",
271
+ eyebrow: "Report",
272
+ theme: "dark",
273
+ cornercut: true,
272
274
  intro:
273
275
  "At the end of their meeting the G7 Labour Ministers highlighted the urgent need to greater focus on rights and occupational safety and health.",
274
276
  link: "https:/www.ilo.org",
@@ -276,26 +278,13 @@ const promoCardGroup: CardGroupProps = {
276
278
  label: "Read the press release",
277
279
  url: "https://www.ilo.org",
278
280
  },
279
- isvideo: false,
280
- size: "standard",
281
- color: "blue",
282
- alignment: "left",
283
- eventdetails: "",
284
- listitems: [],
285
- linklist: {},
286
- dataset: {},
287
- source: {},
288
- image: "",
289
- profile: {},
290
- date: {},
291
281
  },
292
282
  {
293
- type: "promo",
294
- title:
295
- "ILO welcomes G7 call to make a just transition to a green economy happen",
283
+ size: "standard",
284
+ title: "Renewable energy jobs hits 12.7 million globally",
296
285
  eyebrow: "High-level meeting",
297
286
  theme: "dark",
298
- cornercut: "cornercut",
287
+ cornercut: true,
299
288
  intro:
300
289
  "At the end of their meeting the G7 Labour Ministers highlighted the urgent need to greater focus on rights and occupational safety and health.",
301
290
  link: "https:/www.ilo.org",
@@ -303,26 +292,27 @@ const promoCardGroup: CardGroupProps = {
303
292
  label: "Read the press release",
304
293
  url: "https://www.ilo.org",
305
294
  },
306
- isvideo: false,
295
+ },
296
+ {
307
297
  size: "standard",
308
- color: "blue",
309
- alignment: "left",
310
- eventdetails: "",
311
- listitems: [],
312
- linklist: {},
313
- dataset: {},
314
- source: {},
315
- image: "",
316
- profile: {},
317
- date: {},
298
+ title: "ILO welcomes G7 call to make a just transition",
299
+ eyebrow: "Podcast",
300
+ theme: "dark",
301
+ cornercut: true,
302
+ intro:
303
+ "At the end of their meeting the G7 Labour Ministers highlighted the urgent need to greater focus on rights and occupational safety and health.",
304
+ link: "https:/www.ilo.org",
305
+ cta: {
306
+ label: "Read the press release",
307
+ url: "https://www.ilo.org",
308
+ },
318
309
  },
319
310
  {
320
- type: "promo",
321
- title:
322
- "ILO welcomes G7 call to make a just transition to a green economy happen",
311
+ size: "standard",
312
+ title: "Telangana and Andhra Pradesh launch pre-departure handbook",
323
313
  eyebrow: "High-level meeting",
324
- theme: "light",
325
- cornercut: "cornercut",
314
+ theme: "dark",
315
+ cornercut: true,
326
316
  intro:
327
317
  "At the end of their meeting the G7 Labour Ministers highlighted the urgent need to greater focus on rights and occupational safety and health.",
328
318
  link: "https:/www.ilo.org",
@@ -330,21 +320,10 @@ const promoCardGroup: CardGroupProps = {
330
320
  label: "Read the press release",
331
321
  url: "https://www.ilo.org",
332
322
  },
333
- isvideo: false,
334
- size: "standard",
335
- color: "green",
336
- alignment: "left",
337
- eventdetails: "",
338
- listitems: [],
339
- linklist: {},
340
- dataset: {},
341
- source: {},
342
- image: "",
343
- profile: {},
344
- date: {},
345
323
  },
346
324
  ],
347
- cardcount: "three",
325
+ type: "promo",
326
+ cardCount: "three",
348
327
  cta: {
349
328
  label: "Discover our unique mission",
350
329
  url: "https://www.ilo.org",
@@ -354,17 +333,12 @@ const promoCardGroup: CardGroupProps = {
354
333
  const featureCardGroup: CardGroupProps = {
355
334
  cards: [
356
335
  {
357
- type: "feature",
358
336
  isvideo: false,
359
337
  title:
360
338
  "ILO welcomes G7 call to make a just transition to a green economy happen",
361
- eyebrow: "High-level meeting",
362
- theme: "light",
363
- date: {
364
- human: "18 March 2023",
365
- unix: "1670389200",
366
- },
367
- image: "/hero.jpg",
339
+ eyebrow: "Press release",
340
+ theme: "dark",
341
+ image: "/small.jpg",
368
342
  link: "https:/www.ilo.org",
369
343
  linklist: {
370
344
  headline: "",
@@ -379,30 +353,13 @@ const featureCardGroup: CardGroupProps = {
379
353
  },
380
354
  ],
381
355
  },
382
- profile: {},
383
- size: "standard",
384
- color: "blue",
385
- cornercut: "cornercut",
386
- alignment: "left",
387
- intro: "",
388
- eventdetails: "",
389
- listitems: [],
390
- cta: {},
391
- dataset: {},
392
- source: {},
393
356
  },
394
357
  {
395
- type: "feature",
396
- isvideo: true,
397
- title:
398
- "ILO welcomes G7 call to make a just transition to a green economy happen",
399
- eyebrow: "High-level meeting",
358
+ isvideo: false,
359
+ title: "Renewable energy jobs hit 12.7 million globally",
360
+ eyebrow: "Report",
400
361
  theme: "dark",
401
- date: {
402
- human: "19 March 2023",
403
- unix: "1670389200",
404
- },
405
- image: "/hero.jpg",
362
+ image: "/small.jpg",
406
363
  link: "https:/www.ilo.org",
407
364
  linklist: {
408
365
  headline: "",
@@ -417,30 +374,14 @@ const featureCardGroup: CardGroupProps = {
417
374
  },
418
375
  ],
419
376
  },
420
- profile: {},
421
- size: "standard",
422
- color: "blue",
423
- cornercut: "cornercut",
424
- alignment: "left",
425
- intro: "",
426
- eventdetails: "",
427
- listitems: [],
428
- cta: {},
429
- dataset: {},
430
- source: {},
431
377
  },
432
378
  {
433
- type: "feature",
434
379
  isvideo: false,
435
380
  title:
436
- "ILO welcomes G7 call to make a just transition to a green economy happen",
437
- eyebrow: "High-level meeting",
438
- theme: "light",
439
- date: {
440
- human: "20 March 2023",
441
- unix: "1670389200",
442
- },
443
- image: "/hero.jpg",
381
+ "Telangana and Andhra Pradesh launch pre-departure handbook for Indians going to the European Union",
382
+ eyebrow: "Podcast",
383
+ theme: "dark",
384
+ image: "/small.jpg",
444
385
  link: "https:/www.ilo.org",
445
386
  linklist: {
446
387
  headline: "",
@@ -455,30 +396,13 @@ const featureCardGroup: CardGroupProps = {
455
396
  },
456
397
  ],
457
398
  },
458
- profile: {},
459
- size: "standard",
460
- color: "blue",
461
- cornercut: "cornercut",
462
- alignment: "left",
463
- intro: "",
464
- eventdetails: "",
465
- listitems: [],
466
- cta: {},
467
- dataset: {},
468
- source: {},
469
399
  },
470
400
  {
471
- type: "feature",
472
401
  isvideo: false,
473
- title:
474
- "ILO welcomes G7 call to make a just transition to a green economy happen",
475
- eyebrow: "High-level meeting",
402
+ title: "Can digital technology be an equality machine?",
403
+ eyebrow: "Podcast",
476
404
  theme: "dark",
477
- date: {
478
- human: "22 March 2023",
479
- unix: "1670389200",
480
- },
481
- image: "/hero.jpg",
405
+ image: "/small.jpg",
482
406
  link: "https:/www.ilo.org",
483
407
  linklist: {
484
408
  headline: "",
@@ -493,20 +417,10 @@ const featureCardGroup: CardGroupProps = {
493
417
  },
494
418
  ],
495
419
  },
496
- profile: {},
497
- size: "standard",
498
- color: "yellow",
499
- cornercut: "corner",
500
- alignment: "left",
501
- intro: "",
502
- eventdetails: "",
503
- listitems: [],
504
- cta: {},
505
- dataset: {},
506
- source: {},
507
420
  },
508
421
  ],
509
- cardcount: "four",
422
+ cardCount: "three",
423
+ type: "feature",
510
424
  cta: {
511
425
  label: "Discover our unique mission",
512
426
  url: "https://www.ilo.org",
@@ -516,9 +430,21 @@ const featureCardGroup: CardGroupProps = {
516
430
  const detailCardGroup: CardGroupProps = {
517
431
  cards: [
518
432
  {
519
- type: "detail",
520
433
  title: "Technical meeting on digitalization in the construction sector",
521
434
  eyebrow: "Meeting",
435
+ intro:
436
+ "The purpose of the meeting will be to discuss opportunities and challenges for the future of work in the construction industry as a vehicle to ensure a human-centred economic recovery.",
437
+ date: {
438
+ human: "12 March 2023",
439
+ unix: "1670389200",
440
+ },
441
+ image: "/medium.jpg",
442
+ link: "https:/www.ilo.org",
443
+ eventdetails: "5:30 - 12:00 CET | Geneva",
444
+ },
445
+ {
446
+ title: "Renewable energy jobs hit 12.7 million globally",
447
+ eyebrow: "Promo",
522
448
  intro:
523
449
  "The purpose of the meeting will be to discuss opportunities and challenges for the future of work in the construction industry as a vehicle to ensure a human-centred economic recovery.",
524
450
  date: {
@@ -527,48 +453,37 @@ const detailCardGroup: CardGroupProps = {
527
453
  },
528
454
  image: "/medium.jpg",
529
455
  link: "https:/www.ilo.org",
530
- eventdetails: "8:30 - 12:00 CET | Geneva",
531
- theme: "light",
532
- profile: {},
533
- isvideo: false,
534
- size: "standard",
535
- color: "blue",
536
- cornercut: "cornercut",
537
- alignment: "left",
538
- listitems: [],
539
- linklist: {},
540
- cta: {},
541
- dataset: {},
542
- source: {},
456
+ eventdetails: "7:30 - 12:00 CET | Geneva",
543
457
  },
544
458
  {
545
- type: "detail",
546
- title: "Technical meeting on digitalization in the construction sector",
459
+ title: "Telangana and Andhra Pradesh launch pre-departure handbook",
460
+ eyebrow: "Report",
461
+ intro:
462
+ "The purpose of the meeting will be to discuss opportunities and challenges for the future of work in the construction industry as a vehicle to ensure a human-centred economic recovery.",
463
+ date: {
464
+ human: "22 March 2023",
465
+ unix: "1670389200",
466
+ },
467
+ image: "/medium.jpg",
468
+ link: "https:/www.ilo.org",
469
+ eventdetails: "10:30 - 12:00 CET | Geneva",
470
+ },
471
+ {
472
+ title: "Can digital technology be an equality machine?",
547
473
  eyebrow: "Meeting",
548
474
  intro:
549
475
  "The purpose of the meeting will be to discuss opportunities and challenges for the future of work in the construction industry as a vehicle to ensure a human-centred economic recovery.",
550
476
  date: {
551
- human: "20 March 2023",
477
+ human: "31 March 2023",
552
478
  unix: "1670389200",
553
479
  },
554
480
  image: "/medium.jpg",
555
481
  link: "https:/www.ilo.org",
556
- eventdetails: "8:30 - 12:00 CET | Geneva",
557
- theme: "dark",
558
- profile: {},
559
- isvideo: false,
560
- size: "standard",
561
- color: "green",
562
- cornercut: "corner",
563
- alignment: "left",
564
- listitems: [],
565
- linklist: {},
566
- cta: {},
567
- dataset: {},
568
- source: {},
482
+ eventdetails: "11:30 - 12:00 CET | Geneva",
569
483
  },
570
484
  ],
571
- cardcount: "two",
485
+ type: "detail",
486
+ cardCount: "three",
572
487
  cta: {
573
488
  label: "Discover our unique mission",
574
489
  url: "https://www.ilo.org",
@@ -578,63 +493,45 @@ const detailCardGroup: CardGroupProps = {
578
493
  const factListCardGroup: CardGroupProps = {
579
494
  cards: [
580
495
  {
581
- type: "factlist",
496
+ title: "ILO welcomes first global agreement on working conditions",
497
+ theme: "light",
498
+ list: [
499
+ "The current slowdown means that many workers will have to accept lower quality jobs, often at very low pay.",
500
+ "Global employment growth will be only 1.0 per cent in 2023, less than half the level in 2022.",
501
+ "The labour market deterioration is mainly due to emerging geopolitical tensions and the Ukraine conflict.",
502
+ ],
503
+ },
504
+ {
582
505
  title:
583
506
  "Economic slowdown likely to force workers to accept lower quality jobs",
584
- eyebrow: "Report",
585
507
  theme: "light",
586
- cornercut: "cornercut",
587
- intro:
588
- "A toxic combination of mutually-reinforcing crises – inflation, debt, food and fuel price rises, geopolitical tensions and conflict, climate change – are threatening to increase poverty, inequality and discrimination worldwide.",
589
- listitems: [
508
+ list: [
590
509
  "Global employment growth will be only 1.0 per cent in 2023, less than half the level in 2022.",
591
510
  "The labour market deterioration is mainly due to emerging geopolitical tensions and the Ukraine conflict.",
592
511
  "The current slowdown means that many workers will have to accept lower quality jobs, often at very low pay.",
593
512
  ],
594
- link: "https:/www.ilo.org",
595
- profile: {},
596
- date: {},
597
- isvideo: false,
598
- size: "standard",
599
- color: "blue",
600
- alignment: "left",
601
- eventdetails: "",
602
- linklist: {},
603
- cta: {},
604
- dataset: {},
605
- source: {},
606
- image: "",
607
513
  },
608
514
  {
609
- type: "factlist",
610
- title:
611
- "Economic slowdown likely to force workers to accept lower quality jobs",
612
- eyebrow: "Report",
613
- theme: "dark",
614
- cornercut: "cornercut",
615
- intro:
616
- "A toxic combination of mutually-reinforcing crises – inflation, debt, food and fuel price rises, geopolitical tensions and conflict, climate change – are threatening to increase poverty, inequality and discrimination worldwide.",
617
- listitems: [
515
+ title: "Telangana and Andhra Pradesh launch pre-departure handbook",
516
+ theme: "light",
517
+ list: [
518
+ "The current slowdown means that many workers will have to accept lower quality jobs, often at very low pay.",
519
+ "Global employment growth will be only 1.0 per cent in 2023, less than half the level in 2022.",
520
+ "The labour market deterioration is mainly due to emerging geopolitical tensions and the Ukraine conflict.",
521
+ ],
522
+ },
523
+ {
524
+ title: "Renewable energy jobs hit 12.7 million globally",
525
+ theme: "light",
526
+ list: [
618
527
  "Global employment growth will be only 1.0 per cent in 2023, less than half the level in 2022.",
619
528
  "The labour market deterioration is mainly due to emerging geopolitical tensions and the Ukraine conflict.",
620
529
  "The current slowdown means that many workers will have to accept lower quality jobs, often at very low pay.",
621
530
  ],
622
- link: "https:/www.ilo.org",
623
- profile: {},
624
- date: {},
625
- isvideo: false,
626
- size: "standard",
627
- color: "blue",
628
- alignment: "left",
629
- eventdetails: "",
630
- linklist: {},
631
- cta: {},
632
- dataset: {},
633
- source: {},
634
- image: "",
635
531
  },
636
532
  ],
637
- cardcount: "two",
533
+ type: "factlist",
534
+ cardCount: "three",
638
535
  cta: {
639
536
  label: "Discover our unique mission",
640
537
  url: "https://www.ilo.org",
@@ -644,17 +541,16 @@ const factListCardGroup: CardGroupProps = {
644
541
  const dataCardGroup: CardGroupProps = {
645
542
  cards: [
646
543
  {
647
- type: "data",
648
- title: "Technical meeting on digitalization in the construction sector",
649
- eyebrow: "Meeting",
650
- eventdetails:
651
- "The purpose of the meeting will be to discuss opportunities and challenges for the future of work in the construction industry as a vehicle to ensure a human-centred economic recovery.",
544
+ size: "standard",
545
+ eyebrow: "Press release",
546
+ image: "/small.jpg",
547
+ columns: "one",
652
548
  dataset: {
653
549
  content: {
654
550
  items: [
655
551
  {
656
552
  label: "Date",
657
- copy: "18 March 2023",
553
+ copy: "20 March 2023",
658
554
  },
659
555
  {
660
556
  label: "Event type",
@@ -670,13 +566,22 @@ const dataCardGroup: CardGroupProps = {
670
566
  url: "https://www.ilo.org",
671
567
  },
672
568
  {
673
- label: "Briefing notes",
569
+ label: "Practical info",
674
570
  url: "https://www.ilo.org",
675
571
  },
572
+ ],
573
+ },
574
+ cta: {
575
+ headline: "Read online",
576
+ items: [
676
577
  {
677
- label: "Practical info",
578
+ label: "HTML Version",
678
579
  url: "https://www.ilo.org",
679
580
  },
581
+ {
582
+ label: "InfoStories",
583
+ url: "https://www.ilo.org/infostories/en-GB",
584
+ },
680
585
  ],
681
586
  },
682
587
  links: {
@@ -697,48 +602,28 @@ const dataCardGroup: CardGroupProps = {
697
602
  ],
698
603
  },
699
604
  },
700
- date: {},
701
- theme: "light",
702
- link: "",
703
- profile: {},
704
- isvideo: false,
705
- size: "standard",
706
- color: "blue",
707
- cornercut: "cornercut",
708
- alignment: "left",
709
- intro: "",
710
- listitems: [],
711
- linklist: {},
712
- cta: {},
713
- source: {},
714
- image: "",
715
605
  },
716
606
  {
717
- type: "data",
718
- title: "Technical meeting on digitalization in the construction sector",
719
- eyebrow: "Meeting",
720
- eventdetails:
721
- "The purpose of the meeting will be to discuss opportunities and challenges for the future of work in the construction industry as a vehicle to ensure a human-centred economic recovery.",
607
+ size: "standard",
608
+ eyebrow: "Report",
609
+ image: "/small.jpg",
610
+ columns: "one",
722
611
  dataset: {
723
612
  content: {
724
613
  items: [
725
614
  {
726
615
  label: "Date",
727
- copy: "19 March 2023",
616
+ copy: "23 March 2023",
728
617
  },
729
618
  {
730
619
  label: "Event type",
731
- copy: "Technical meeting of experts",
620
+ copy: "Casual meeting",
732
621
  },
733
622
  ],
734
623
  },
735
624
  files: {
736
625
  headline: "Files",
737
626
  items: [
738
- {
739
- label: "Meeting agenda",
740
- url: "https://www.ilo.org",
741
- },
742
627
  {
743
628
  label: "Briefing notes",
744
629
  url: "https://www.ilo.org",
@@ -749,13 +634,22 @@ const dataCardGroup: CardGroupProps = {
749
634
  },
750
635
  ],
751
636
  },
752
- links: {
753
- headline: "Languages",
637
+ cta: {
638
+ headline: "Read online",
754
639
  items: [
755
640
  {
756
- label: "English",
641
+ label: "HTML Version",
757
642
  url: "https://www.ilo.org",
758
643
  },
644
+ {
645
+ label: "InfoStories",
646
+ url: "https://www.ilo.org/infostories/en-GB",
647
+ },
648
+ ],
649
+ },
650
+ links: {
651
+ headline: "Languages",
652
+ items: [
759
653
  {
760
654
  label: "Español",
761
655
  url: "https://www.ilo.org",
@@ -767,34 +661,18 @@ const dataCardGroup: CardGroupProps = {
767
661
  ],
768
662
  },
769
663
  },
770
- date: {},
771
- theme: "light",
772
- link: "",
773
- profile: {},
774
- isvideo: false,
775
- size: "standard",
776
- color: "blue",
777
- cornercut: "cornercut",
778
- alignment: "left",
779
- intro: "",
780
- listitems: [],
781
- linklist: {},
782
- cta: {},
783
- source: {},
784
- image: "",
785
664
  },
786
665
  {
787
- type: "data",
788
- title: "Technical meeting on digitalization in the construction sector",
666
+ size: "standard",
789
667
  eyebrow: "Meeting",
790
- eventdetails:
791
- "The purpose of the meeting will be to discuss opportunities and challenges for the future of work in the construction industry as a vehicle to ensure a human-centred economic recovery.",
668
+ image: "/small.jpg",
669
+ columns: "one",
792
670
  dataset: {
793
671
  content: {
794
672
  items: [
795
673
  {
796
674
  label: "Date",
797
- copy: "21 March 2023",
675
+ copy: "24 March 2023",
798
676
  },
799
677
  {
800
678
  label: "Event type",
@@ -806,16 +684,21 @@ const dataCardGroup: CardGroupProps = {
806
684
  headline: "Files",
807
685
  items: [
808
686
  {
809
- label: "Meeting agenda",
687
+ label: "Practical info",
810
688
  url: "https://www.ilo.org",
811
689
  },
690
+ ],
691
+ },
692
+ cta: {
693
+ headline: "Read online",
694
+ items: [
812
695
  {
813
- label: "Briefing notes",
696
+ label: "HTML Version",
814
697
  url: "https://www.ilo.org",
815
698
  },
816
699
  {
817
- label: "Practical info",
818
- url: "https://www.ilo.org",
700
+ label: "InfoStories",
701
+ url: "https://www.ilo.org/infostories/en-GB",
819
702
  },
820
703
  ],
821
704
  },
@@ -830,41 +713,21 @@ const dataCardGroup: CardGroupProps = {
830
713
  label: "Español",
831
714
  url: "https://www.ilo.org",
832
715
  },
833
- {
834
- label: "Français",
835
- url: "https://www.ilo.org",
836
- },
837
716
  ],
838
717
  },
839
718
  },
840
- date: {},
841
- theme: "light",
842
- link: "",
843
- profile: {},
844
- isvideo: false,
845
- size: "standard",
846
- color: "blue",
847
- cornercut: "cornercut",
848
- alignment: "left",
849
- intro: "",
850
- listitems: [],
851
- linklist: {},
852
- cta: {},
853
- source: {},
854
- image: "",
855
719
  },
856
720
  {
857
- type: "data",
858
- title: "Technical meeting on digitalization in the construction sector",
721
+ size: "standard",
859
722
  eyebrow: "Meeting",
860
- eventdetails:
861
- "The purpose of the meeting will be to discuss opportunities and challenges for the future of work in the construction industry as a vehicle to ensure a human-centred economic recovery.",
723
+ image: "/small.jpg",
724
+ columns: "one",
862
725
  dataset: {
863
726
  content: {
864
727
  items: [
865
728
  {
866
729
  label: "Date",
867
- copy: "22 March 2023",
730
+ copy: "29 March 2023",
868
731
  },
869
732
  {
870
733
  label: "Event type",
@@ -889,6 +752,19 @@ const dataCardGroup: CardGroupProps = {
889
752
  },
890
753
  ],
891
754
  },
755
+ cta: {
756
+ headline: "Read online",
757
+ items: [
758
+ {
759
+ label: "HTML Version",
760
+ url: "https://www.ilo.org",
761
+ },
762
+ {
763
+ label: "InfoStories",
764
+ url: "https://www.ilo.org/infostories/en-GB",
765
+ },
766
+ ],
767
+ },
892
768
  links: {
893
769
  headline: "Languages",
894
770
  items: [
@@ -907,24 +783,10 @@ const dataCardGroup: CardGroupProps = {
907
783
  ],
908
784
  },
909
785
  },
910
- date: {},
911
- theme: "light",
912
- link: "",
913
- profile: {},
914
- isvideo: false,
915
- size: "standard",
916
- color: "blue",
917
- cornercut: "cornercut",
918
- alignment: "left",
919
- intro: "",
920
- listitems: [],
921
- linklist: {},
922
- cta: {},
923
- source: {},
924
- image: "",
925
786
  },
926
787
  ],
927
- cardcount: "four",
788
+ cardCount: "three",
789
+ type: "data",
928
790
  cta: {
929
791
  label: "Discover our unique mission",
930
792
  url: "https://www.ilo.org",