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

Commit 1315d5b

Browse files
author
dpatanin
committed
resolved warning in docs/index.js and clean up
1 parent 7ec4eb9 commit 1315d5b

1 file changed

Lines changed: 9 additions & 45 deletions

File tree

src/pages/docs/index.js

Lines changed: 9 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -12,58 +12,22 @@ const Docs = (props) => {
1212
<div className="container">
1313
<div className="row">
1414
<div className="col-12">
15-
<h1>Meet The Team</h1>
16-
<p>
17-
Our team of qualified accountants and financial consultants can help your business
18-
at any stage of it’s growth.
19-
</p>
15+
<h1>Documentation</h1>
16+
<h2>For developers and users</h2>
17+
<p>Documentation for developing purposes and advanced usage.</p>
2018
</div>
2119
</div>
2220
</div>
2321
</div>
2422

25-
<div className="container pb-6">
26-
{/* <div className="row">
27-
{teams.map(edge => (
28-
<div key={edge.node.frontmatter.path} className="col-12 col-md-6 mb-1">
29-
<div className="team card-two">
30-
<div className="card-header">
31-
<div className="card-header-left">
32-
{edge.node.frontmatter.image && (
33-
<div className="card-image">
34-
<img
35-
alt={edge.node.frontmatter.title}
36-
className="img-fluid mb-2"
37-
src={edge.node.frontmatter.image}
38-
/>
39-
</div>
40-
)}
41-
</div>
42-
<div className="card-right">
43-
<h2 className="card-title">{edge.node.frontmatter.title}</h2>
44-
<ul className="card-meta">
45-
<li>
46-
<strong>{edge.node.frontmatter.jobtitle}</strong>
47-
</li>
48-
<li>
49-
<a target="_blank" href={edge.node.frontmatter.linkedinurl}>
50-
{edge.node.frontmatter.linkedinurl}
51-
</a>
52-
</li>
53-
<li>
54-
<a href={edge.node.frontmatter.email}>{edge.node.frontmatter.email}</a>
55-
</li>
56-
</ul>
57-
</div>
58-
</div>
59-
<div
60-
className="team-content"
61-
dangerouslySetInnerHTML={{ __html: edge.node.html }}
62-
/>
63-
</div>
23+
<div className="container pb-2 pb-md-3">
24+
<div className="row justify-content-center">
25+
{docs.map(doc => (
26+
<div className="feature">
27+
<h1>{doc.node.frontmatter.title}</h1>
6428
</div>
6529
))}
66-
</div> */}
30+
</div>
6731
</div>
6832
</Layout>
6933
);

0 commit comments

Comments
 (0)