foundry-component-library 0.2.30 → 0.2.31

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.
@@ -25,6 +25,9 @@ const Capabilities = ({
25
25
 
26
26
  return (
27
27
  <Container>
28
+ <a className={styles.button} href="#get-in-touch">
29
+ Get in touch
30
+ </a>
28
31
  <div className={styles.heading}>Our capabilities</div>
29
32
  <div className={styles.items}>
30
33
  {items.map((item) => {
@@ -179,3 +179,10 @@
179
179
  position: relative;
180
180
  }
181
181
  }
182
+
183
+ .button {
184
+ @extend .button;
185
+ display: inline-block;
186
+ cursor: pointer;
187
+ margin-bottom: 3rem;
188
+ }
@@ -27,9 +27,10 @@ const TextSection = ({
27
27
  <div className={`${styles.section} ${alignStyle} ${themeStyle}`}>
28
28
  {caption && <div className={styles.caption}>{caption}</div>}
29
29
  {heading && (
30
- <div className={`${styles.heading} ${isSmall ? styles.small : ""}`}>
31
- {heading}
32
- </div>
30
+ <div
31
+ className={`${styles.heading} ${isSmall ? styles.small : ""}`}
32
+ dangerouslySetInnerHTML={{ __html: heading }}
33
+ />
33
34
  )}
34
35
  {subheading && <div className={styles.subheading}>{subheading}</div>}
35
36
  {text && <div className={styles.text}>{text}</div>}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foundry-component-library",
3
- "version": "0.2.30",
3
+ "version": "0.2.31",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",