Files
MermsPanelReactJS/src/component/product/ProductStart.jsx
T
CHIEFSOFT\ameye 82ee55800a product path
2024-12-14 11:57:57 -05:00

42 lines
2.5 KiB
React
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 doesnt 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>
</>
)
}