diff --git a/Dockerfile b/Dockerfile
new file mode 100755
index 0000000..d4fcff9
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,15 @@
+# pull official base image
+FROM node:13.12.0-alpine
+
+RUN mkdir -p /app
+WORKDIR /app
+EXPOSE 3001
+
+ENV PATH /app/node_modules/.bin:$PATH
+
+COPY . /app
+
+RUN npm install -y --silent
+RUN npm rebuild node-sass
+
+CMD ["npm", "start"]
\ No newline at end of file
diff --git a/README.md b/README.md
old mode 100644
new mode 100755
diff --git a/items.csv b/items.csv
old mode 100644
new mode 100755
diff --git a/package-lock.json b/package-lock.json
old mode 100644
new mode 100755
diff --git a/package.json b/package.json
old mode 100644
new mode 100755
diff --git a/public/favicon.ico b/public/favicon.ico
old mode 100644
new mode 100755
diff --git a/public/index.html b/public/index.html
old mode 100644
new mode 100755
diff --git a/public/logo192.png b/public/logo192.png
old mode 100644
new mode 100755
diff --git a/public/logo512.png b/public/logo512.png
old mode 100644
new mode 100755
diff --git a/public/manifest.json b/public/manifest.json
old mode 100644
new mode 100755
diff --git a/public/progress1.mp3 b/public/progress1.mp3
old mode 100644
new mode 100755
diff --git a/public/progress2.mp3 b/public/progress2.mp3
old mode 100644
new mode 100755
diff --git a/public/robots.txt b/public/robots.txt
old mode 100644
new mode 100755
diff --git a/src/App.css b/src/App.css
old mode 100644
new mode 100755
diff --git a/src/App.js b/src/App.js
old mode 100644
new mode 100755
index 2698d07..cd12fc2
--- a/src/App.js
+++ b/src/App.js
@@ -13,6 +13,7 @@ import ProgressBar from 'react-bootstrap/ProgressBar';
import Accordion from 'react-bootstrap/Accordion';
import ToastContainer from 'react-bootstrap/ToastContainer'
import Toast from 'react-bootstrap/Toast'
+import Nav from 'react-bootstrap/Nav'
import { FaCheckCircle } from 'react-icons/fa';
@@ -20,7 +21,7 @@ import { FaCheckCircle } from 'react-icons/fa';
const parse = require('csv-parse/lib/sync')
const axios = require('axios');
-const dataSplitters = [0,135,250,388]
+const dataSplitters = [0,128,225,363]
const BACKEND_URL = "https://projectdivar.com:4505"
@@ -107,6 +108,35 @@ function Notification(p) {
}
+function DarkInput(p){
+ const {props}=p;
+ return
+}
+
+function SorterApp(){
+ const [item1,setItem1] = useState("")
+ const [item2,setItem2] = useState("")
+ const [item3,setItem3] = useState("")
+ const [item4,setItem4] = useState("")
+ const [item5,setItem5] = useState("")
+ const [item6,setItem6] = useState("")
+
+ return <>
+