Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
code
Public Stack Site
Commits
e3981cfc
Commit
e3981cfc
authored
Jul 31, 2020
by
alain
🐙
Browse files
initial commit
parents
Pipeline
#275
canceled with stages
Changes
67
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
frontend/src/images/gatsby-astronaut.png
0 → 100644
View file @
e3981cfc
163 KB
frontend/src/images/gatsby-icon.png
0 → 100644
View file @
e3981cfc
20.7 KB
frontend/src/pages/404.js
0 → 100644
View file @
e3981cfc
import
React
from
"
react
"
import
Layout
from
"
../components/layout
"
import
SEO
from
"
../components/seo
"
const
NotFoundPage
=
()
=>
(
<
Layout
>
<
SEO
title
=
"
404: Not found
"
/>
<
h1
>
NOT
FOUND
<
/h1
>
<
p
>
You
just
hit
a
route
that
doesn
&
#
39
;
t
exist
...
the
sadness
.
<
/p
>
<
/Layout
>
)
export
default
NotFoundPage
frontend/src/pages/domains.js
0 → 100644
View file @
e3981cfc
import
React
from
"
react
"
import
{
graphql
}
from
"
gatsby
"
import
Layout
from
"
../components/layout
"
import
SEO
from
"
../components/seo
"
const
DomainsPage
=
({
data
})
=>
(
<
Layout
>
<
SEO
title
=
"
Domains
"
/>
<
h1
>
Domains
<
/h1
>
<
ul
>
{
data
.
allStrapiDomain
.
nodes
.
map
(
node
=>
(
<
li
key
=
{
node
.
id
}
>
<
h3
>
{
node
.
title
}
<
/h3
>
<
p
>
{
node
.
description
}
<
/p
>
<
/li
>
))
}
<
/ul
>
<
/Layout
>
)
export
default
DomainsPage
export
const
pageQuery
=
graphql
`
query DomainQuery {
allStrapiDomain {
nodes {
id
title
description
}
}
}
`
\ No newline at end of file
frontend/src/pages/index.js
0 → 100644
View file @
e3981cfc
import
React
from
"
react
"
import
Layout
from
"
../components/layout
"
import
SEO
from
"
../components/seo
"
const
IndexPage
=
()
=>
(
<
Layout
>
<
SEO
title
=
"
Home
"
/>
<
h1
>
Index
<
/h1
>
<
p
>
Lorem
ipsum
dolor
kit
<
/p
>
<
/Layout
>
)
export
default
IndexPage
frontend/src/pages/use-cases.js
0 → 100644
View file @
e3981cfc
import
React
from
"
react
"
import
{
graphql
}
from
"
gatsby
"
import
Layout
from
"
../components/layout
"
import
SEO
from
"
../components/seo
"
const
UseCasesPage
=
({
data
})
=>
(
<
Layout
>
<
SEO
title
=
"
Use Cases
"
/>
<
h1
>
Use
Cases
<
/h1
>
<
ul
>
{
data
.
allStrapiUseCase
.
nodes
.
map
(
node
=>
(
<
li
key
=
{
node
.
id
}
>
<
h3
>
{
node
.
title
}
<
/h3
>
<
p
>
{
node
.
description
}
<
/p
>
<
/li
>
))
}
<
/ul
>
<
/Layout
>
)
export
default
UseCasesPage
export
const
pageQuery
=
graphql
`
query UseCasesQuery {
allStrapiUseCase {
nodes {
id
title
description
}
}
}
`
\ No newline at end of file
frontend/yarn.lock
0 → 100644
View file @
e3981cfc
This diff is collapsed.
Click to expand it.
Prev
1
2
3
4
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment