Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.

Commit 73bceb2

Browse files
committed
Autoformat with prettier
1 parent 2a828b5 commit 73bceb2

1 file changed

Lines changed: 49 additions & 33 deletions

File tree

src/pages/index.js

Lines changed: 49 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import React from "react";
2-
import { graphql, withPrefix, Link } from "gatsby";
1+
import React from 'react';
2+
import { graphql, withPrefix, Link } from 'gatsby';
33
import Helmet from 'react-helmet';
44
import SEO from '../components/SEO';
5-
import Layout from "../components/Layout";
6-
import approved from "../images/approved.svg";
7-
import notApproved from "../images/not approved.svg";
5+
import Layout from '../components/Layout';
6+
import approved from '../images/approved.svg';
7+
import notApproved from '../images/not approved.svg';
88

9-
const Home = (props) => {
9+
const Home = props => {
1010
const json = props.data.allFeaturesJson.edges;
1111
return (
1212
<Layout bodyClass="page-home">
@@ -22,16 +22,20 @@ const Home = (props) => {
2222
<h1>secureCodeBox</h1>
2323
<h2>Testing your Software Security</h2>
2424
<p>
25-
secureCodeBox is a docker based, modularized toolchain for continuous security scans of your software project.
26-
Its goal is to orchestrate and easily automate a bunch of security-testing tools out of the box.
27-
</p>
25+
secureCodeBox is a docker based, modularized toolchain for
26+
continuous security scans of your software project. Its goal is to
27+
orchestrate and easily automate a bunch of security-testing tools
28+
out of the box.
29+
</p>
2830
</div>
2931
</div>
3032

3133
<div className="container pt-3 pb-2 pt-md-3 pb-md-3">
3234
<div className="row justify-content-center">
3335
<div className="col-12">
34-
<h2 className="title-3 text-dark mb-2">What the secureCodeBox provides:</h2>
36+
<h2 className="title-3 text-dark mb-2">
37+
What the secureCodeBox provides:
38+
</h2>
3539
</div>
3640
{json.map(edge => (
3741
<div key={edge.node.id} className="col-12 col-md-3 col-lg-3 mb-2">
@@ -51,36 +55,48 @@ const Home = (props) => {
5155

5256
<div className="container pt-3 pb-5 pb-md-7">
5357
<div className="col-12">
54-
<h2 className="title-3 text-dark mb-2">When is the secureCodeBox right for your team?</h2>
58+
<h2 className="title-3 text-dark mb-2">
59+
When is the secureCodeBox right for your team?
60+
</h2>
5561
</div>
5662
<div className="feature">
5763
<h2 className="feature-title"></h2>
58-
<div className="feature-list" >
64+
<div className="feature-list">
5965
<ul className="pro">
60-
<li> <img src={approved}/>
61-
Teams with an already medium to advanced security program</li>
62-
<li> <img src={approved} />
63-
Multi-team setups</li>
64-
<li> <img src={approved} />
65-
Integration into fast moving teams</li>
66-
</ul>
66+
<li>
67+
<img src={approved} />
68+
Teams with an already medium to advanced security program
69+
</li>
70+
<li>
71+
<img src={approved} />
72+
Multi-team setups
73+
</li>
74+
<li>
75+
<img src={approved} />
76+
Integration into fast moving teams
77+
</li>
78+
</ul>
6779

6880
<ul className="con">
69-
<li> <img src={notApproved}/>
70-
As the first security steps</li>
71-
<li><img src={notApproved} />
72-
Teams with separate dev, ops and security teams</li>
73-
</ul >
74-
</div >
75-
</div >
76-
</div >
77-
</Layout >
78-
)
79-
}
81+
<li>
82+
<img src={notApproved} />
83+
As the first security steps
84+
</li>
85+
<li>
86+
<img src={notApproved} />
87+
Teams with separate dev, ops and security teams
88+
</li>
89+
</ul>
90+
</div>
91+
</div>
92+
</div>
93+
</Layout>
94+
);
95+
};
8096

8197
export const query = graphql`
82-
query {
83-
allFeaturesJson (filter: {tag: {eq: "provision"}}){
98+
query {
99+
allFeaturesJson(filter: { tag: { eq: "provision" } }) {
84100
edges {
85101
node {
86102
id
@@ -93,4 +109,4 @@ export const query = graphql`
93109
}
94110
`;
95111

96-
export default Home;
112+
export default Home;

0 commit comments

Comments
 (0)