Reactstrap Core Projects
-Share with your potential customers your most valued projects with these projects sections components.
Description
We’ve made the following projects components using various
reactstrap
components, and
Bootstrap
classes and also some custom
scss
/css
classes.
Example
Since these components were created with the thought of expanding on a whole screen, you should also take a look at our live preview, to see it on full width here.
Projects1
Some of Our Awesome Projects
import React from "react";
// reactstrap components
// import {
//
// } from "reactstrap";
// Core Components
import Projects1 from "components/projects/Projects1.js";
function Example() {
return (
<>
<Projects1 />
</>
);
}
export default Example;
Projects2
Some of Our Awesome Products
The time is now for it to be okay to be great. People in this world shun people for being great.
import React from "react";
// reactstrap components
// import {
//
// } from "reactstrap";
// Core Components
import Projects2 from "components/projects/Projects2.js";
function Example() {
return (
<>
<Projects2 />
</>
);
}
export default Example;
Projects3
Our work
Some of Our Awesome Projects - 3
import React from "react";
// reactstrap components
// import {
//
// } from "reactstrap";
// Core Components
import Projects3 from "components/projects/Projects3.js";
function Example() {
return (
<>
<Projects3 />
</>
);
}
export default Example;
Note
You should note, that none of the bellow components are dynamic, as we do not know what your end use case will be. Feel free to change it, add your own props and dynamic code.