Skip to content

Commit 5a78206

Browse files
author
Matheus Ishiyama
authored
Fix: no friend requests & Finish: README.md (#3)
Fix: no friend requests & Finish: README.md
2 parents 97a77b0 + 1ccae52 commit 5a78206

File tree

8 files changed

+49
-1
lines changed

8 files changed

+49
-1
lines changed

README.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,35 @@
1-
# chat-app-frontend
1+
# Chat app (frontend)
2+
3+
![JavaScript](https://img.shields.io/badge/-JavaScript-F7DF1E?style=flat-square&logo=javascript&logoColor=black)
4+
![Nextjs](https://img.shields.io/badge/-Nextjs-000000?style=flat-square&logo=next.js&logoColor=white)
5+
![React](https://img.shields.io/badge/-React-1572B6?style=flat-square&logo=react&logoColor=white)
6+
![HTML5](https://img.shields.io/badge/-HTML5-E34F26?style=flat-square&logo=html5&logoColor=white)
7+
![CSS3](https://img.shields.io/badge/-CSS3-1572B6?style=flat-square&logo=css3)
8+
9+
This a real time chat with socket.
10+
11+
**Screens**
12+
13+
I create this wireframes in `Figma`, you can see file [here](./assets/chat-app.fig).
14+
15+
![Wireframes](./assets/chat-app-screens.png)
16+
17+
## How it works?
18+
19+
First you need to create and confirm email.
20+
![Register](./assets/chat-app-register.gif)
21+
22+
After you register and confirm, you can login with `username` and `password`
23+
![Login](./assets/chat-app-login.gif)
24+
25+
You can send friend request to your friend, just need his `username`.
26+
![Friends](./assets/chat-app-friends.gif)
27+
28+
And chat xD
29+
![Messages](./assets/chat-app-messages.gif)
30+
31+
---
32+
33+
If you wanna see backend click [here](https://github.com/MatheusIshiyama/chat-app-backend).
34+
35+
**Developed by Matheus Ishiyama**

assets/chat-app-friends.gif

2.5 MB
Loading

assets/chat-app-login.gif

722 KB
Loading

assets/chat-app-messages.gif

1.36 MB
Loading

assets/chat-app-register.gif

2.65 MB
Loading

assets/chat-app-screens.png

320 KB
Loading

assets/chat-app.fig

91.6 KB
Binary file not shown.

css/Home.module.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,20 @@
230230
align-items: center;
231231
}
232232

233+
.body .friends .friendsCards .friendCard {
234+
margin: 5px 25px 20px 25px;
235+
width: 540px;
236+
padding: 10px 20px;
237+
border-radius: 10px;
238+
background: white;
239+
font-size: 1em;
240+
font-family: "Poppins";
241+
color: #183657;
242+
display: flex;
243+
flex-direction: column;
244+
align-items: center;
245+
}
246+
233247
.body .friends .friendsCards .requestCard p {
234248
color: #007cff;
235249
font-size: 1em;

0 commit comments

Comments
 (0)