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

Commit fe99fca

Browse files
author
dpatanin
committed
change order of persistence provider & hooks
1 parent e3fc926 commit fe99fca

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

src/pages/integrations/index.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -56,23 +56,21 @@ const Integrations = (props) => {
5656
))}
5757
</div>
5858
</div>
59-
<div className="container pb-2 pb-md-3">
59+
<div className="container pb-2 pb-md-3">
6060
<div className="row left-content-center">
6161
<div className="col-12">
62-
<h2 className="title-3 text-dark mb-2">
63-
Data Processing and Integration Hooks
64-
</h2>
62+
<h2 className="title-3 text-dark ">Persistence Provider</h2>
6563
<p>
6664
Each Scanner is an individual tool. We took no part in building
6765
them and did not adjust them for our purposes, which is great,
6866
because, like so we can provide them as they are and ready for
6967
use.
7068
</p>
7169
</div>
72-
{hook.map((edge, index) => (
70+
{persistenceProvider.map((edge, index) => (
7371
<div
7472
key={index}
75-
className="col-12 col-md-6 col-lg-6 col-sm-12 no-highlight"
73+
className="col-12 col-md-6 col-lg-6 col-sm-12 mb-2 no-highlight"
7674
>
7775
<Link to={edge.node.frontmatter.path}>
7876
<IntegrationCard frontmatter={edge.node.frontmatter} />
@@ -81,21 +79,23 @@ const Integrations = (props) => {
8179
))}
8280
</div>
8381
</div>
84-
<div className="container pb-2 pb-md-3">
82+
<div className="container pb-2 pb-md-3">
8583
<div className="row left-content-center">
8684
<div className="col-12">
87-
<h2 className="title-3 text-dark ">Persistence Provider</h2>
85+
<h2 className="title-3 text-dark mb-2">
86+
Data Processing and Integration Hooks
87+
</h2>
8888
<p>
8989
Each Scanner is an individual tool. We took no part in building
9090
them and did not adjust them for our purposes, which is great,
9191
because, like so we can provide them as they are and ready for
9292
use.
9393
</p>
9494
</div>
95-
{persistenceProvider.map((edge, index) => (
95+
{hook.map((edge, index) => (
9696
<div
9797
key={index}
98-
className="col-12 col-md-6 col-lg-6 col-sm-12 mb-2 no-highlight"
98+
className="col-12 col-md-6 col-lg-6 col-sm-12 no-highlight"
9999
>
100100
<Link to={edge.node.frontmatter.path}>
101101
<IntegrationCard frontmatter={edge.node.frontmatter} />

0 commit comments

Comments
 (0)