39 lines
2.0 KiB
JavaScript
39 lines
2.0 KiB
JavaScript
|
||
|
||
import Link from "next/link"
|
||
export default function MersmHero() {
|
||
return (
|
||
<>
|
||
<section id="hero-13" className="hero-section">
|
||
<div className="container">
|
||
<div className="row d-flex align-items-center">
|
||
{/* HERO TEXT */}
|
||
<div className="col-md-5">
|
||
<div className="hero-13-txt wow fadeInRight">
|
||
{/* Section ID */}
|
||
<span className="section-id">Online Reputation That Work</span>
|
||
{/* Title */}
|
||
<h2 className="s-54 w-700">Your practice’s reputation is strategic for your success</h2>
|
||
{/* Text */}
|
||
<p className="p-lg">In the digital age, your online reputation has to work for you for your practice to be effective and create trust.
|
||
</p>
|
||
{/* Button */}
|
||
<Link href={process.env.NEXT_PUBLIC_SIGNUP_URL} className="btn r-04 btn--theme hover--tra-black">Get started for free</Link>
|
||
{/*<p className="p-sm btn-txt ico-15">*/}
|
||
{/* <span className="flaticon-check" /> No credit card needed, free 14-day trial*/}
|
||
{/*</p>*/}
|
||
</div>
|
||
</div> {/* END HERO TEXT */}
|
||
{/* HERO IMAGE */}
|
||
<div className="col-md-7">
|
||
<div className="hero-13-img wow fadeInLeft">
|
||
<img className="img-fluid" src="/images/hero-13-img.png" alt="hero-image" />
|
||
</div>
|
||
</div>
|
||
</div> {/* End row */}
|
||
</div> {/* End container */}
|
||
</section>
|
||
</>
|
||
)
|
||
}
|