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
66export 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+ }
0 commit comments