Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Landing page #249

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
4 changes: 2 additions & 2 deletions client/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<meta property="og:site_name" content="FAQ Zenika" />
<meta property="og:title" content="FAQ Zenika" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://faq.zenika.com" />
<meta property="og:image" content="https://faq.zenika.com/img/thinking_face-200.png" />
<meta property="og:url" content="https://faq.team" />
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<meta property="og:url" content="https://faq.team" />
<meta property="og:url" content="https://zenika.faq.team" />

<meta property="og:image" content="https://zenika.faq.team/img/thinking_face-200.png" />
<meta property="og:image:alt" content="Thinking emoji" />
<meta property="og:description" content="Internal Knowledge Database for your organization" />

Expand Down
24 changes: 24 additions & 0 deletions landing/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
seogo

npm-debug.log*
yarn-debug.log*
yarn-error.log*
13,978 changes: 13,978 additions & 0 deletions landing/package-lock.json

Large diffs are not rendered by default.

34 changes: 34 additions & 0 deletions landing/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"name": "landing",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^4.4.1",
"classnames": "^2.2.6",
"node-sass": "^4.13.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "3.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
2 changes: 2 additions & 0 deletions landing/public/.well-known/security.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Contact: [email protected]
Preferred-Languages: en, fr
Loading