Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2,199 changes: 2,190 additions & 9 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,21 @@
"i18next": "^20.3.2",
"i18next-browser-languagedetector": "^6.1.2",
"i18next-http-backend": "^1.2.6",
"node-sass": "^6.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.9.0",
"react-i18next": "^11.11.0",
"react-icons": "^4.2.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-router-hash-link": "^2.4.3",
"react-scripts": "^4.0.3",
"react-toast-notifications": "^2.4.4",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"web-vitals": "^1.0.1"
},
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions public/assets/img/authentication.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/assets/img/forgot_password.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/assets/img/logo-word.png
Binary file not shown.
1 change: 1 addition & 0 deletions public/assets/img/secure_login.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/assets/img/word-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,6 @@ function App() {
<Route exact path='/' component={Home} />
<Route path='/terms' component={Terms} />
<Route path='/privacy' component={Privacy} />
<Route exact path="/login" component={Login} />
<Route exact path="/register" component={Register} />
<ProtectedRoute path="/dashboard" component={Dashboard} />
</Switch>
<Footer />
<Backtop />
Expand Down
16 changes: 16 additions & 0 deletions src/Redux/Store.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { createStore, combineReducers, applyMiddleware } from "redux";
import thunk from 'redux-thunk';
import { composeWithDevTools } from "redux-devtools-extension";


const reducer = combineReducers({

});

let initialState = {}

const middleware = [thunk];

const store = createStore(reducer,initialState, composeWithDevTools(applyMiddleware(...middleware)));

export default store;
3 changes: 3 additions & 0 deletions src/components/about/about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.bg{
background-color: white;
}
3 changes: 2 additions & 1 deletion src/components/about/about.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import React, { Component } from "react";
import { withTranslation } from 'react-i18next';
import './about.css';

class About extends Component {
render() {
return <section id="about" className="about">
return <section id="about" className="about bg">
<div className="container" data-aos="fade-up">
<div className="row">
<div className="col-lg-5 col-md-6">
Expand Down
Loading