Files
MermsWebsite2025/components/sections/MersmHero.js
T
CHIEFSOFT\ameye 845fcaf119 Fix footer menyu
2026-03-21 12:52:47 -04:00

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">All-in-One Cloud Platform for Practice Management</h2>
{/* Text */}
<p className="p-lg">Streamline workflows across practice with powerful AI agents. Build and deploy automated workflows with ease.
</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-b-img.png" alt="hero-image" />
</div>
</div>
</div> {/* End row */}
</div> {/* End container */}
</section>
</>
)
}