Skip to content

Commit d3ce22a

Browse files
committed
Update some files
1 parent e30139b commit d3ce22a

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ pnpm-lock.yaml
1111
.env.development
1212
.env.test
1313
.env.production
14+
.env.production

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ front end serving as the client and the back end and database serving as the ser
4242

4343
### Front-end
4444

45-
The front end of the platform is built using ReactJS, ReactJS allows for the creation of dynamic and responsive user
45+
The front end of the platform is built using ReactJS,as it is SPA aproachable ReactJS allows for the creation of dynamic and responsive user
4646
interfaces, which are critical for providing an engaging learning experience to the students.
4747
The front end communicates with the back end using RESTful API calls
4848

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
"showdown": "^2.1.0",
3131
"swiper": "^9.3.1",
3232
"video-react": "^0.16.0",
33-
"web-vitals": "^2.1.4"
33+
"web-vitals": "^2.1.4",
34+
3435
},
3536
"scripts": {
3637
"start": "react-scripts start",
@@ -55,7 +56,7 @@
5556
"development": [
5657
"last 1 chrome version",
5758
"last 1 firefox version",
58-
"last 1 safari version"
59+
5960
]
6061
},
6162
"devDependencies": {

server/controllers/Category.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const Category = require("../models/Category")
2-
2+
const User = require("../models/User")
33
function getRandomInt(max) {
44
return Math.floor(Math.random() * max)
55
}

src/data/countrycode.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
"country": "Afghanistan",
88
"code": "+93"
99
},
10+
{
11+
"country": "AfghanistanNew",
12+
"code": "+95"
13+
},
1014
{
1115
"country": "Albania",
1216
"code": "+355"

tailwind.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = {
2020
300: "#838894",
2121
400: "#6E727F",
2222
500: "#585D69",
23-
600: "#424854",
23+
600: "#6E727F",
2424
700: "#2C333F",
2525
800: "#838894",
2626
900: "#000814",

0 commit comments

Comments
 (0)