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

Commit 176f121

Browse files
author
dpatanin
committed
wip
1 parent cfb1e40 commit 176f121

3 files changed

Lines changed: 27 additions & 17 deletions

File tree

src/pages/getStarted/index.js

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,32 @@ const GetStarted = (props) => {
1212
<div className="container">
1313
<div className="row">
1414
<div className="col-12">
15-
<h1>Tutorials</h1>
16-
<h2>For starting up things</h2>
17-
<p>
18-
Guides on how to start up engine, scanner, persistence provider
19-
and do scan jobs etc.. Perhaps with screencasts.
20-
</p>
15+
<h1>Getting Started</h1>
16+
<h2>User and developer oriented documentation</h2>
17+
<span>
18+
How To:
19+
<ul>
20+
<li>
21+
Start
22+
<ul>
23+
<li>Operator</li>
24+
<li>Scanner</li>
25+
<li>Persistence Provider</li>
26+
</ul>
27+
</li>
28+
<li>Hooks</li>
29+
<li>Contribute</li>
30+
</ul>
31+
</span>
2132
</div>
2233
</div>
2334
</div>
2435
</div>
2536

2637
<div className="container pb-2 pb-md-3">
2738
<div className="row justify-content-center">
28-
{tutorials.map(tutorial => (
29-
<div className="feature">
39+
{tutorials.map((tutorial, index) => (
40+
<div key={index} className="feature">
3041
<h1>{tutorial.node.frontmatter.title}</h1>
3142
</div>
3243
))}
@@ -39,7 +50,7 @@ const GetStarted = (props) => {
3950
export const query = graphql`
4051
query ServicesQuery {
4152
allMarkdownRemark(
42-
filter: { fileAbsolutePath: { regex: "/getStarted/" } }
53+
filter: { fileAbsolutePath: { regex: "/docs/" } }
4354
sort: { fields: [frontmatter___title], order: DESC }
4455
) {
4556
edges {
@@ -48,6 +59,7 @@ export const query = graphql`
4859
frontmatter {
4960
title
5061
path
62+
category
5163
}
5264
}
5365
}

src/scss/components/_footer.scss

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
.footer-strip {
22
background: $secureCodeBlue;
3-
padding-top: 20px;
4-
padding-bottom: 20px;
3+
display: flex;
4+
flex-direction: column;
5+
justify-content: center;
6+
height: 70px;
57
.container {
68
width: inherit;
79
max-width: 4060px;
8-
margin-left: 20px;
9-
margin-right: 20px;
10+
margin: auto 20px;
1011
}
1112
}
1213
.footer {

src/scss/pages/getStarted/_page-getStarted.scss

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,14 @@
33
background-image: url('../images/documentation.png');
44
background-repeat: no-repeat;
55
background-size: 100%;
6-
background-position: 49px -50px;
6+
background-position: right bottom;
77
@include media-breakpoint-up(sm) {
88
background-size: 90%;
9-
background-position: 620% 70px;
109
}
1110
@include media-breakpoint-up(md) {
1211
background-size: 85%;
13-
background-position: 360% 0px;
1412
}
1513
@include media-breakpoint-up(lg) {
1614
background-size: 60%;
17-
background-position: 110% 0px;
1815
}
1916
}

0 commit comments

Comments
 (0)