React js UI example. resume user profile widget

React js UI example and template, resume user profile 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: user,profile

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 bootdey">
<div class="row bootstrap snippets bootdey">
    <div class="col-md-4">
      <div class="box box-widget widget-user-2">
        <div class="widget-user-header bg-yellow">
          <div class="widget-user-image">
            <img class="img-circle" src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="User Avatar"/>
          </div>
          <h3 class="widget-user-username">Nadia Carmichael</h3>
          <h5 class="widget-user-desc">Lead Developer</h5>
        </div>
        <div class="box-footer no-padding">
          <ul class="nav nav-stacked">
            <li><a href="#/">Projects <span class="pull-right badge bg-blue">31</span></a></li>
            <li><a href="#/">Tasks <span class="pull-right badge bg-aqua">5</span></a></li>
            <li><a href="#/">Completed Projects <span class="pull-right badge bg-green">12</span></a></li>
            <li><a href="#/">Followers <span class="pull-right badge bg-red">842</span></a></li>
          </ul>
        </div>
      </div>
    </div>
    
    <div class="col-md-4">
      <div class="box box-widget widget-user-2">
        <div class="widget-user-header bg-red">
          <div class="widget-user-image">
            <img class="img-circle" src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="User Avatar"/>
          </div>
          <h3 class="widget-user-username">Nadia Carmichael</h3>
          <h5 class="widget-user-desc">Lead Developer</h5>
        </div>
        <div class="box-footer no-padding">
          <ul class="nav nav-stacked">
            <li><a href="#/">Projects <span class="pull-right badge bg-blue">31</span></a></li>
            <li><a href="#/">Tasks <span class="pull-right badge bg-aqua">5</span></a></li>
            <li><a href="#/">Completed Projects <span class="pull-right badge bg-green">12</span></a></li>
            <li><a href="#/">Followers <span class="pull-right badge bg-red">842</span></a></li>
          </ul>
        </div>
      </div>
    </div>
    
    <div class="col-md-4">
      <div class="box box-widget widget-user-2">
        <div class="widget-user-header bg-aqua">
          <div class="widget-user-image">
            <img class="img-circle" src="https://bootdey.com/img/Content/avatar/avatar3.png" alt="User Avatar"/>
          </div>
          <h3 class="widget-user-username">Nadia Carmichael</h3>
          <h5 class="widget-user-desc">Lead Developer</h5>
        </div>
        <div class="box-footer no-padding">
          <ul class="nav nav-stacked">
            <li><a href="#/">Projects <span class="pull-right badge bg-blue">31</span></a></li>
            <li><a href="#/">Tasks <span class="pull-right badge bg-aqua">5</span></a></li>
            <li><a href="#/">Completed Projects <span class="pull-right badge bg-green">12</span></a></li>
            <li><a href="#/">Followers <span class="pull-right badge bg-red">842</span></a></li>
          </ul>
        </div>
      </div>
    </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;
    background:#eee;
}

.box-widget {
    border: none;
    position: relative;
}
.box {
    position: relative;
    border-radius: 3px;
    background: #ffffff;
    border-top: 3px solid #d2d6de;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}
.box-widget .widget-user-header {
    padding: 20px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.widget-user-desc {
    margin-left: 75px;
    color:#fff;
     margin-top: 0;
}
.widget-user-username {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: 300;
    color:#fff;
}
.widget-user-image>img {
    width: 65px;
    height: auto;
    float: left;
}
.no-padding {
    padding: 0 !important;
}
.box-footer {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top: 1px solid #f4f4f4;
    padding: 10px;
    background-color: #fff;
}
.box .nav-stacked>li {
    border-bottom: 1px solid #f4f4f4;
    margin: 0;
}
.nav-stacked>li>a {
    border-radius: 0;
    border-top: 0;
    border-left: 3px solid transparent;
    color: #444;
}
.bg-yellow {
    background-color: #f39c12 !important;
}
.bg-blue {
    background-color: #0073b7 !important;
}
.bg-aqua {
    background-color: #00c0ef !important;
}
.bg-green {
    background-color: #00a65a !important;
}
.bg-red {
    background-color: #dd4b39 !important;
}

Similar snippets

React js template and ui example user profile with timeline photos and setting

user profile with timeline photos and setting

React js template and ui example Update user profile

Update user profile

React js template and ui example cover profile detail

cover profile detail

React js template and ui example Profile Followers Page

Profile Followers Page

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 beta friend list

bs4 beta friend list

React js template and ui example Project Detail

Project Detail