Files
CHIEFSOFT\ameye d848bcd61c first commit
2024-12-23 05:09:28 -05:00

92 lines
5.7 KiB
JavaScript

import Link from "next/link"
export default function Hero8() {
return (
<>
<section id="hero-8" className="bg--fixed hero-section">
<div className="container">
<div className="row d-flex align-items-center">
{/* HERO TEXT */}
<div className="col-md-6 col-lg-7">
<div className="hero-8-txt color--white wow fadeInRight">
{/* Title */}
<h2 className="s-54 w-700">Optimize your website for speed and efficiency</h2>
{/* Text */}
<p className="p-lg color--coal">Mauris donec turpis suscipit sapien ociis sagittis sapien
tempor undo volute ligula quaerat congue neque nulla
</p>
{/* HERO DIGITS */}
<div className="hero-digits clearfix">
{/* DIGIT BLOCK #1 */}
<div id="hd-1-1">
<div className="hero-digits-block">
{/* Digit */}
<div className="block-digit">
<h2 className="s-46 statistic-number">3<span>x</span></h2>
</div>
{/* Text */}
<div className="block-txt">
<p className="p-sm 1color--coal">Tempor sapien and quaerat placerat</p>
</div>
</div>
</div> {/* END DIGIT BLOCK #1 */}
{/* DIGIT BLOCK #2 */}
<div id="hd-1-2">
<div className="hero-digits-block">
{/* Digit */}
<div className="block-digit">
<h2 className="s-46 statistic-number">29<span>%</span></h2>
</div>
{/* Text */}
<div className="block-txt">
<p className="p-sm 1color--coal">Ligula suscipit vitae and rutrum turpis</p>
</div>
</div>
</div> {/* END DIGIT BLOCK #2 */}
</div> {/* END HERO DIGITS */}
</div>
</div> {/* END HERO TEXT */}
{/* HERO REQUEST FORM */}
<div className="col-md-6 col-lg-5">
<div id="hero-8-form" className="r-10 wow fadeInLeft">
{/* Title */}
<h4 className="s-26 w-700">Get started for Free!</h4>
{/* Text */}
<p className="p-md">Feugiat primis ligula risus auctor purus laoreet augue mauris viverra tortor</p>
{/* Form */}
<form name="requestForm" className="row request-form">
{/* Form Input */}
<div className="col-md-12">
<input type="text" name="name" className="form-control name" placeholder="Enter Your Name*" autoComplete="off" required />
</div>
{/* Form Input */}
<div className="col-md-12">
<input type="email" name="email" className="form-control email" placeholder="Enter Your Email*" autoComplete="off" required />
</div>
{/* Form Button */}
<div className="col-md-12 form-btn">
<button type="submit" className="btn btn--theme hover--theme submit">Get Started Now</button>
</div>
{/* Form Message */}
<div className="col-md-12 request-form-msg text-center">
<span className="loading" />
</div>
</form>
{/* Notice Text */}
<p className="p-sm">By submitting this form, you accept our <Link href="/terms">Terms of Service</Link>
and <Link href="/privacy">Privacy Policy</Link>
</p>
</div> {/* END FORM */}
</div> {/* END HERO REQUEST FORM */}
</div> {/* End row */}
</div> {/* End container */}
{/* WAVE SHAPE BOTTOM */}
<div className="wave-shape-bottom">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 165"><path fillOpacity={1} d="M0,160L120,154.7C240,149,480,139,720,128C960,117,1200,107,1320,101.3L1440,96L1440,320L1320,320C1200,320,960,320,720,320C480,320,240,320,120,320L0,320Z" /></svg>
</div>
</section>
</>
)
}