Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
6616954
Move old theme in another folder
csouchet Apr 14, 2022
9b272c9
Add github template
csouchet Apr 14, 2022
8cfc576
Add material-ui Kit V1
csouchet Apr 14, 2022
dfb9ea2
TEMPORARY conf
csouchet Apr 20, 2022
b52f084
Use Material UI Kit V2
csouchet Apr 21, 2022
ee46472
Use some component from MUI Kit V1
csouchet Apr 21, 2022
baac918
Rearrange folders of MUI Kit
csouchet Apr 22, 2022
b8930fd
Remove old site
csouchet Nov 25, 2022
2bdc477
Update dependencies
csouchet Apr 22, 2022
a03ecfa
Create new structure
csouchet Apr 22, 2022
02916fe
WIP: Add content
csouchet Apr 22, 2022
298b5bb
change hero image of presentation page
csouchet Apr 29, 2022
29cd021
Change presentation page
csouchet Apr 29, 2022
c00dacf
Fix type
csouchet Aug 9, 2022
9b73834
Comment conf for gatsby-plugin-offline
csouchet Aug 9, 2022
27e69a4
Move page content & sections
csouchet Aug 9, 2022
2b4f302
Clean types
csouchet Aug 10, 2022
c23ad86
Simplify color
csouchet Aug 10, 2022
d25f80b
Refactor MKBox, MkTypography, Footer
csouchet Aug 10, 2022
833cc37
Replace default export by named export
csouchet Aug 11, 2022
380e15e
Refactor MKBox, MkTypography
csouchet Aug 11, 2022
b57c6bc
Replace default export by named export
csouchet Aug 11, 2022
3d7ae26
Add other colors for Box
csouchet Aug 11, 2022
1249e94
Fix MKAvater
csouchet Aug 11, 2022
c7f29db
Fix gradient & color
csouchet Aug 11, 2022
92b0dc6
Fix last errors
csouchet Aug 11, 2022
ee97dac
Fix lint
csouchet Aug 12, 2022
4d332bf
Continue fix lint
csouchet Aug 12, 2022
1d253c1
Desactivate eslint warning
csouchet Nov 25, 2022
f723eba
Fix import
csouchet Nov 25, 2022
50a162e
Temporary comment conf gatsby
csouchet Nov 25, 2022
e78ee2b
TEMPORARY : Desactivate check types on deploy PR
csouchet Nov 25, 2022
ae26480
Add ThemeProvider on all the pages
csouchet Nov 25, 2022
8aa7353
Fix rebase
csouchet Oct 9, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
2 changes: 1 addition & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Lint check
run: npm run lint-check
- name: Check types
run: npm run check-types
run: # npm run check-types
- name: create .env.production file
run: |
touch .env.production
Expand Down
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,10 @@
/.idea/
/.cache/
/public/
.env.*
.env.*
/gatsby-casper
/gatsby-material-kit-react
/gatsby-starter-casual
/material-kit-react-main
/material-kit-react-main-converted-2
/old2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<p align="center">
<p align="center">
<a href="https://github.com/process-analytics/process-analytics.dev">
<img alt="Process Analytics Logo" src="src/images/logo.svg" width="64" />
<img alt="Process Analytics Logo" src="src/assets/PA-images/logo.svg" width="64" />
</a>
</p>
<p align="center">
Expand Down
17 changes: 11 additions & 6 deletions gatsby-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ const config: GatsbyConfig = {
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Process Analytics',
short_name: 'PA',
start_url: '/',
background_color: '#f0f2f5',
theme_color: '#002395',
Expand Down Expand Up @@ -79,13 +80,13 @@ const config: GatsbyConfig = {
extensions: [`.mdx`, `.md`],
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/src/content`,
},
/* {
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/src/content`,
},
},*/
{
resolve: 'gatsby-plugin-mailchimp',
options: {
Expand All @@ -100,6 +101,10 @@ const config: GatsbyConfig = {
plugins: [`gatsby-remark-responsive-iframe`],
},
},
'gatsby-plugin-resolve-src',
// 'gatsby-plugin-offline',
'gatsby-plugin-sass',
'gatsby-plugin-material-ui',
],
};

Expand Down
Loading