42 lines
2.5 KiB
React
42 lines
2.5 KiB
React
import React from "react";
|
||
import getImage from "../../utils/getImage";
|
||
export default function ProductStart(){
|
||
return (
|
||
<>
|
||
<div className="row">
|
||
<div className="col-md-9">
|
||
<div className="card card-statistics ">
|
||
<img className="card-img-top" src={getImage('product/p4.jpg')} alt="Card image cap" />
|
||
<div className="card-body">
|
||
<h4 className="card-title">Commitment</h4>
|
||
<p className="card-text">Commitment is something that comes from understanding that everything has its price and then having the willingness to pay that price. This is important because nobody wants to put significant effort into something, only to find out after the fact that the price was too high.The price is something not necessarily defined as financial. It could be time, effort, sacrifice, money or perhaps, something else.</p>
|
||
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div className="col-md-3">
|
||
<div className="card card-statistics mb-30">
|
||
{/*<img className="card-img-top" src={getImage('widget/01.jpg')} alt="Card image cap" />*/}
|
||
<div className="card-body">
|
||
<h4 className="card-title">Subscription</h4>
|
||
<p className="card-text">Start with your goals in mind and then work possible.ith yand Goals. If the plan doesn’t support the vision then change it! </p>
|
||
</div>
|
||
<ul className="list-group list-group-flush">
|
||
<li className="list-group-item">FAQ pages is for consistency</li>
|
||
<li className="list-group-item">Information</li>
|
||
<li className="list-group-item">Related content</li>
|
||
</ul>
|
||
<div className="card-body">
|
||
<a href="javascript:void(0)" className="card-link">Card link</a>
|
||
<a href="javascript:void(0)" className="card-link">Another link</a>
|
||
</div>
|
||
<div className="subscribe-box">
|
||
<a href="javascript:void(0)" className="btn btn-primary mt-2">Start Product</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</>
|
||
)
|
||
} |