Skip to content

Commit c4c7346

Browse files
committed
add imformation to about section
Signed-off-by: Jess Chitas <[email protected]>
1 parent 56f3932 commit c4c7346

File tree

2 files changed

+46
-40
lines changed

2 files changed

+46
-40
lines changed

src/components/About2/index.js

Lines changed: 46 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,51 @@
11
// This has a showForMobile class that is used to hide the about section on desktop
22
// Removing for template but if you want the full useEffect, add ${styles.showForMobile} to the first div tag
33

4-
import styles from "./styles.module.css"
4+
import styles from "./styles.module.css";
55

66
export default function About2() {
7-
return (
8-
<div className={`${styles.about} ${styles.aboutViewport} ${styles.background2}`} id="about">
9-
<div className={styles.aboutGrid}>
10-
<div className={styles.aboutSection1}>
11-
<h1 className={styles.aboutHeader}>About 2</h1>
12-
<p className={styles.aboutText} role="paragraph">
13-
This is where the text goes for the first section
14-
</p>
15-
</div>
16-
<div className={styles.aboutSection2}>
17-
<h1 className={styles.aboutHeader}>About 2</h1>
18-
<p className={styles.aboutText} role="paragraph">
19-
This is where the text goes for the second section
20-
</p>
21-
</div>
22-
<div className={styles.aboutSection3}>
23-
<h1 className={styles.aboutHeader}>About 2</h1>
24-
<p className={styles.aboutText} role="paragraph">
25-
This is where the text goes for the third section
26-
</p>
27-
</div>
28-
<div className={styles.aboutSection4}>
29-
<h1 className={styles.aboutHeader}>About 2</h1>
30-
<p className={styles.aboutText} role="paragraph">
31-
This is where the text goes for the fourth section
32-
</p>
33-
</div>
34-
<div className={styles.aboutSection5}>
35-
<h1 className={styles.aboutHeader}>About 2</h1>
36-
<p className={styles.aboutText} role="paragraph">
37-
This is where the text goes for the fifth section
38-
</p>
39-
</div>
40-
</div>
41-
</div>
42-
);
43-
}
44-
7+
return (
8+
<div
9+
className={`${styles.about} ${styles.aboutViewport} ${styles.background2}`}
10+
id="about"
11+
>
12+
<div className={styles.aboutGrid}>
13+
<div className={styles.aboutSection1}>
14+
<h1 className={styles.aboutHeader}>Simple and Secure Lifestyle</h1>
15+
<p className={styles.aboutText} role="paragraph">
16+
Manage the entire device journey from onboarding to decommissioning
17+
with minimal effort and strong safeguards{" "}
18+
</p>
19+
</div>
20+
<div className={styles.aboutSection2}>
21+
<h1 className={styles.aboutHeader}>GitOps at the Edge</h1>
22+
<p className={styles.aboutText} role="paragraph">
23+
Automate device configuration and updates using declarative
24+
workflows backed by version control{" "}
25+
</p>
26+
</div>
27+
<div className={styles.aboutSection3}>
28+
<h1 className={styles.aboutHeader}>Centralized Control</h1>
29+
<p className={styles.aboutText} role="paragraph">
30+
Operate and monitor all edges fleets from a single interface with
31+
full visibility into each device{" "}
32+
</p>
33+
</div>
34+
<div className={styles.aboutSection4}>
35+
<h1 className={styles.aboutHeader}>Built in Security</h1>
36+
<p className={styles.aboutText} role="paragraph">
37+
Support for TPM-based identity, mutual TLS, and fine-grained policy
38+
controls ensures secure operations{" "}
39+
</p>
40+
</div>
41+
<div className={styles.aboutSection5}>
42+
<h1 className={styles.aboutHeader}>Scales with You</h1>
43+
<p className={styles.aboutText} role="paragraph">
44+
Designed to efficiently handle thousands of devices across
45+
distributed environments{" "}
46+
</p>
47+
</div>
48+
</div>
49+
</div>
50+
);
51+
}

src/components/About2/styles.module.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.background2 {
22
color: black;
3-
background-color: #707070;
43
}
54

65
[data-theme="dark"] .background2 {

0 commit comments

Comments
 (0)