Files
dev-chiefworks 2ce13271d8 first commit
2024-01-10 11:05:21 -05:00

110 lines
3.2 KiB
React
Raw Permalink 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 Link from "next/link";
import FeaturesEight from "../features/FeaturesEight";
import Image from "next/image";
const HeroBannerFour = () => {
return (
<div className="hero-banner-four">
<Image width="213" height="86"
src="/images/shape/100.svg"
alt="shape"
className="shapes shape-four"
/>
<Image width="10" height="19"
src="/images/shape/101.svg"
alt="shape"
className="shapes shape-five"
/>
<Image width="242" height="433"
src="/images/shape/102.svg"
alt="shape"
className="shapes shape-six"
/>
<Image width="246" height="400"
src="/images/shape/103.svg"
alt="shape"
className="shapes shape-seven"
/>
<div className="container">
<div className="row">
<div className="col-lg-6 order-lg-last">
<div className="illustration-holder">
<Image
src="/images/assets/ils_14.svg"
alt="shape"
className="illustration"
width={660}
height={471}
/>
<Image
src="/images/assets/ils_14.1.svg"
width={83}
height = {102}
alt="shape"
className="shapes shape-one"
/>
<Image width="83" height="98"
src="/images/assets/ils_14.2.svg"
alt="shape"
className="shapes shape-two"
/>
<Image width="88" height="107"
src="/images/assets/ils_14.3.svg"
alt="shape"
className="shapes shape-three"
/>
</div>
<p className="review-text">
Over <span>150,000+ client</span> all over the world.
</p>
</div>
{/* End .col */}
<div className="col-lg-6 order-lg-first">
<div className="text-wrapper">
<h1 data-aos="fade-up" data-aos-duration="1200">
<span>Event ticket</span> organiser & seller.
</h1>
<p
className="sub-text"
data-aos="fade-up"
data-aos-duration="1200"
data-aos-delay="100"
>
For hassale free event, we are here to help you by creating
online ticket.
</p>
<Link
href="/login"
className="theme-btn-five"
data-aos="fade-up"
data-aos-duration="1200"
data-aos-delay="200"
>
{" "}
Lets get started
</Link>
</div>
{/* /.text-wrapper */}
</div>
{/* End .col */}
</div>
</div>
<div className="fancy-feature-eight mt-160 md-mt-100">
<div className="container">
<div className="bg-wrapper">
<FeaturesEight />
</div>
</div>
</div>
{/* /.fancy-feature-eight */}
</div>
);
// {/* /.hero-banner-four */}
};
export default HeroBannerFour;