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
1 change: 0 additions & 1 deletion Procfile

This file was deleted.

19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,21 @@
# sociapp
social media app made with the help of NodeJS, ExpressJS, MongoDB, Template Engine(ejs) and Socket.IO deployed on heroku...

## Screenshots depicting the product

### Homepage: signin, signup
![image](https://user-images.githubusercontent.com/95043790/179776897-f1ee0d86-6743-4eeb-9125-f1956d03b876.png)

### User Dashboard
![image](https://user-images.githubusercontent.com/95043790/179777073-35e0d31c-2ccc-4aa1-8efc-533d50489400.png)

### User Profile Page
![image](https://user-images.githubusercontent.com/95043790/179777224-6f48f566-56de-4f68-92d9-f97d1533b29f.png)

### Chat Page
<img width="960" alt="image" src="https://user-images.githubusercontent.com/95043790/179778123-f11a41b1-b19a-4e3c-80ce-d745a09c6b39.png">

### Single page post screen
![image](https://user-images.githubusercontent.com/95043790/179778279-bb8b5e26-79a7-48a3-a424-279dff1247bb.png)

## Thanks..
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "a social media app made using nodejs expressjs mongodb",
"main": "app.js",
"scripts": {
"start": "node app.js"
"start": "nodemon app.js"
},
"repository": {
"type": "git",
Expand All @@ -17,6 +17,10 @@
],
"author": "Saurabh Kumar",
"license": "ISC",
"engines": {
"node": "16.x",
"npm": "8.x"
},
"bugs": {
"url": "https://github.com/NTSTET/sociapp/issues"
},
Expand Down Expand Up @@ -46,9 +50,5 @@
},
"devDependencies": {
"nodemon": "^2.0.19"
},
"engines": {
"node": "16.x",
"npm": "8.x"
}
}
15 changes: 6 additions & 9 deletions public/css/styles.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&display=swap');
Expand All @@ -24,10 +24,7 @@ body {
width: 100%;
margin: auto;
background-color: #FFDEE9;
background-image: linear-gradient(0deg, #FFDEE9 0%, #B5FFFC 100%);



background-image: linear-gradient(0deg, #FFDEE9 0%, #B5FFFC 100%);
}

.navbar {
Expand Down Expand Up @@ -196,7 +193,7 @@ background-image: linear-gradient(0deg, #FFDEE9 0%, #B5FFFC 100%);
}

.wid-80{
width: 100%;
width: 95%;
}
}

Expand Down Expand Up @@ -420,14 +417,14 @@ a {
.users {
flex-basis: 30%;
flex-grow: 1;
background: #93f9b9;
background: #93f9b9;
background-image: radial-gradient( circle farthest-corner at 22.4% 21.7%, rgba(4,189,228,1) 0%, rgba(2,83,185,1) 100.2% );
}

.users > h5 {
padding: 18px;
margin-bottom: 0;
background: #62118a;
background: #62118a;
color: aliceblue;
}

Expand Down Expand Up @@ -492,7 +489,7 @@ a {
}

/* customize scroll bar */
:is(.chat-panel-wrapper)::-webkit-scrollbar{
:is(.chat-panel-wrapper)::-webkit-scrollbar{
width: 8px;
}

Expand Down