React js UI example. Blog Gallery Widget

React js UI example and template, Blog Gallery Widget! . Take a look at this UI example and see how it can enhance your project. Your can copy or download the code and use it in your project. Don't forget to browse our library of other free React Native templates for even more design and functionality inspiration. Happy coding!
Tags: blog,post,image,widget

1. First, we need fresh reactjs setup, and for that, we need to run below commands into out terminal, and also we should have latest node version installed on our system:

npx create-react-app my-awesome-project

cd my-awesome-project

npm start

2. Now we need to run below commands into our project terminal to get bootstrap and related modules into our reactjs application:

npm install [email protected] --save

npm start //For start project again

3. Finally for the main output, we need to add below code into our my-awesome-project/src/App.js file or if you have fresh setup then you can replace my-awesome-project/src/App.js file code with below code:

import React from 'react';
import './App.css';
import 'bootstrap/dist/css/bootstrap.min.css';


function App() {
  
	return (
		<div>
			<div class="container bootstrap snippets bootdey">
    <div class="row">
    <div class="col-md-6">
        <a href="javascript:;" class="widget widget-image">
            <div class="widget-image-cover">
                <img src="https://www.bootdey.com/image/520x300/87CEFA/000000" alt=""/>
            </div>
            <div class="widget-image-info">
                <h5>Consectetur adipiscing elit. </h5>
                <p>
                    Curabitur ullamcorper mi ut rutrum gravida commodo tellus.
                </p>
                <div class="row">
                    <div class="col-md-6">
                        <div class="widget-image-user">
                            <div class="widget-image-user-image">
                                <img src="https://bootdey.com/img/Content/user_1.jpg" alt=""/>
                            </div> 
                            <div class="widget-image-user-info">
                                <div>Haydar Juan</div>
                                <span>45 minutes ago</span>
                            </div>
                        </div>
                    </div>
                    <div class="col-md-6">
                        <div class="widget-image-rating-text">8,281 Reviews (4.0/5)</div>
                    </div>
                </div>
            </div>
        </a>
    </div>
    <div class="col-md-6">
        <a href="javascript:;" class="widget widget-image">
            <div class="widget-image-cover">
                <img src="https://www.bootdey.com/image/520x300/FFB6C1/000000" alt=""/>
            </div>
            <div class="widget-image-info">
                <h5>Consectetur adipiscing elit. </h5>
                <p>
                    Curabitur ullamcorper mi ut rutrum gravida commodo tellus.
                </p>
                <div class="row">
                    <div class="col-md-6">
                        <div class="widget-image-user">
                            <div class="widget-image-user-image">
                                <img src="https://bootdey.com/img/Content/user_2.jpg" alt=""/>
                            </div> 
                            <div class="widget-image-user-info">
                                <div>Haydar Juan</div>
                                <span>45 minutes ago</span>
                            </div>
                        </div>
                    </div>
                    <div class="col-md-6">
                        <div class="widget-image-rating-text">8,281 Reviews (4.0/5)</div>
                    </div>
                </div>
            </div>
        </a>
    </div>
  </div>
</div>
		</div>
	);
}
export default App;

4. Now we need to add below code into our my-awesome-project/src/App.css file :

body{margin-top:20px;}

.widget.widget-image {
    overflow: hidden;
}

.widget {
    border: none;
    box-shadow: 0 2px 0 rgba(0,0,0,.07);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    padding: 20px;
    display: block;
}

.widget-image-cover {
    margin: -20px;
    padding: 100% 20px 20px;
    border-radius: 5px;
    overflow: hidden;
    background: #3C454D;
    position: relative;
}

.widget-image:hover .widget-image-cover img {
    max-width: 110%;
    min-height: 110%;
    margin-left: -5%;
    margin-top: -5%;
}

.widget-image .widget-image-cover img {
    transition: all .1s ease-in-out;
}

.widget-image-cover img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100%;
    max-width: 100%;
}

.widget-image-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.8) 75%);
    padding: 20px;
    color: #fff;
}

.widget-image-info h5 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 16px;
}

.widget-image-info p {
    color: rgba(255,255,255,.9);
}

.row {
    margin: 0 -10px;
}

.row>[class*=col-] {
    padding: 0 10px;
}

.widget-image-user .widget-image-user-image {
    border-radius: 36px;
    float: left;
    width: 36px;
    background: #fff;
}

.widget-image-user .widget-image-user-info {
    margin-left: 46px;
}

.widget-image-user .widget-image-user-image img {
    max-width: 100%;
    border-radius: 36px;
}

Similar snippets

React js template and ui example simple social network post

simple social network post

React js template and ui example Profile widget

Profile widget

React js template and ui example Latest Blog and News

Latest Blog and News

React js template and ui example Social post

Social post

React js template and ui example dark invoice

dark invoice

React js template and ui example Shop Order Tracking

Shop Order Tracking

React js template and ui example bs4 crud users

bs4 crud users

React js template and ui example bs4 beta friend list

bs4 beta friend list