Skip to content

Commit ebd1123

Browse files
readme screenshots links updated
1 parent 5ada0cf commit ebd1123

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
Fullstack Blogsite built using React as a frontend , express js (backend framework) and MongoDB as a database.Also, implemented various features like form validation ,user authentication(signup and login functionalities) ,separate user profiles, reset password, forgot password and much more.
44

5+
## Current Progress
6+
7+
<p align="center">
8+
<img src="https://user-images.githubusercontent.com/37651620/105505024-8c426500-5cf0-11eb-8604-61fb561cc4fe.jpg" alt="drawing" width="100"/>
9+
</p>
10+
<img src="https://user-images.githubusercontent.com/37651620/105505774-77b29c80-5cf1-11eb-8487-4b52ce091a06.png" alt="drawing" width="auto"/>
11+
<img src="https://user-images.githubusercontent.com/37651620/105505790-7bdeba00-5cf1-11eb-899b-1274157939fe.png" alt="drawing" width="auto"/>
12+
<p align="center">
13+
<img src="https://user-images.githubusercontent.com/37651620/105505705-64073600-5cf1-11eb-9271-27e681501a32.png" alt="drawing" width="auto" height="700"/>
14+
</p>
15+
516
---
617

718
Step By Step Build:

client/components/Layout.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const Layout = ({children}) =>{
66

77
return (
88
<>
9+
910
<Header/>
1011
{children}
1112
{/* <p>footer</p> */}

client/components/blog/Card/Card.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const Card =({blog})=>{
4848
<div className="row">
4949
<div className="col-md-4">
5050
<section>
51-
<img className="img img-fluid" style={{maxHeight:"120px",width:"auto",filter:"blur(0.5px)"}} src={`${API}/api/blog/photo/${blog.slug}`} alt={blog.title}/>
51+
<img className="img img-fluid pl-3" style={{maxHeight:"290px",width:"auto",filter:"blur(0.5px)"}} src={`${API}/api/blog/photo/${blog.slug}`} alt={blog.title}/>
5252
</section>
5353
</div>
5454
<div className="col-md-8">
@@ -59,7 +59,7 @@ const Card =({blog})=>{
5959
</div>
6060
</div>
6161
<section>
62-
<p className="ml-2 pt-5 pb-1">
62+
<p className="ml-2 pt-4 pb-1 pl-3">
6363
<div style={{backgroundColor:"inset 0 0 2000px rgba(255, 255, 255, .5)",filter:"blur(0.7px)",fontSize:"15px"}}> Author : {blog.postedBy.name} | Published {moment(blog.updatedAt).fromNow()} </div>
6464
</p>
6565
</section>

0 commit comments

Comments
 (0)