next-cochise/src/components/Homepage.tsx

135 lines
6.0 KiB
TypeScript
Raw Normal View History

2025-02-12 02:42:13 +07:00
import { features4 } from "@/data/features";
2025-02-01 06:57:24 +07:00
import Image from "next/image";
import Link from "next/link";
2025-02-12 00:34:57 +07:00
import Cta3 from "./cta3";
2025-02-01 06:57:24 +07:00
import Service from "./Service";
2025-02-13 01:35:57 +07:00
import { GoogleReviewsBlock } from "./Blocks/GoogleReviews";
2025-02-13 21:32:58 +07:00
import Testimonials from "./Testimonials";
2025-02-01 06:57:24 +07:00
export default function homepage({ onePage = false, dark = false }) {
return (
<>
<hr className={`mt-0 mb-0 ${dark ? "white" : ""} `} />
2025-02-03 12:53:36 +07:00
<section className={`page-section scrollSpysection ${dark ? "bg-dark-1 light-content" : ""} `} id="about">
2025-02-01 06:57:24 +07:00
<div className="container position-relative">
<div className="row">
{/* Section Text */}
<div className="col-lg-6 d-flex align-items-center order-first order-lg-last mb-md-60 mb-sm-40">
<div className="w-100 wow fadeInUp">
2025-02-03 12:53:36 +07:00
<h2 className="section-caption-slick mb-30 mb-sm-20">About Oncology</h2>
<h3 className="section-title mb-30">Begin your path to healing with Cochise Oncology.</h3>
2025-02-01 06:57:24 +07:00
<p className="text-gray mb-40">
2025-02-03 12:53:36 +07:00
Our dedicated team in Sierra Vista, AZ is here to support you with hope, strength, and courage. We
offer personalized cancer care using innovative treatments in our state-of-the-art facility. Take the
first step towards comprehensive, patient-focused treatment by scheduling a consultation. Let us
listen to your needs, answer your questions, and create a tailored plan for your journey. Fill out our
form to connect with our compassionate experts and discover how Cochise Oncology can stand with you in
your fight against cancer.
2025-02-01 06:57:24 +07:00
</p>
{/* Features List */}
<div className="row features-list mt-n20 mb-50 mb-sm-30">
{/* Features List Item */}
{features4.map((feature, index) => (
2025-02-03 12:53:36 +07:00
<div key={index} className="col-sm-6 col-lg-12 col-xl-6 d-flex mt-20">
2025-02-01 06:57:24 +07:00
<div className="features-list-icon">
<i className="mi-check" />
</div>
<div className="features-list-text">{feature.text}</div>
</div>
))}
{/* End Features List Item */}
</div>
{/* End Features List */}
<div className="local-scroll wch-unset">
{onePage ? (
<>
2025-02-03 12:53:36 +07:00
<a href="#contact" className="btn btn-mod btn-color btn-large btn-circle btn-hover-anim mb-xs-10">
<span>Contact us</span>
2025-02-01 06:57:24 +07:00
</a>
</>
) : (
<>
<Link
2025-02-12 12:55:08 +07:00
href={`/contact`}
2025-02-01 06:57:24 +07:00
className="btn btn-mod btn-color btn-large btn-circle btn-hover-anim mb-xs-10"
>
2025-02-03 12:53:36 +07:00
<span>Contact us</span>
2025-02-01 06:57:24 +07:00
</Link>
</>
)}
{onePage ? (
2025-02-11 23:59:16 +07:00
<></>
2025-02-01 06:57:24 +07:00
) : (
<>
{" "}
2025-02-11 23:59:16 +07:00
<Link href={`/radixact`} className="link-hover-anim ms-2 ms-sm-5 me-2" data-link-animate="y">
<div className="link-strong">
Find more about Radixact
<i className="mi-arrow-right ml-4" aria-hidden="true"></i>
</div>
2025-02-01 06:57:24 +07:00
</Link>
</>
)}
</div>
</div>
</div>
{/* End Section Text */}
{/* Image */}
<div className="col-lg-6 d-flex align-items-center">
<div className="w-100 pe-lg-5">
<div className="composition-5">
<div className="composition-5-decoration opacity-065">
2025-02-03 12:53:36 +07:00
<Image src="/assets/images/demo-slick/decoration-1.svg" alt="" width={228} height={228} />
2025-02-01 06:57:24 +07:00
</div>
2025-02-03 12:53:36 +07:00
<Image
src="/assets/images/cochise-welcome.png"
alt="Image Description"
width={550}
height={600}
className="wow scaleOutIn"
data-wow-offset={200}
/>
2025-02-01 06:57:24 +07:00
</div>
</div>
</div>
{/* End Images */}
</div>
</div>
</section>
<hr className={`mt-0 mb-0 ${dark ? "white" : ""} `} />
2025-02-12 00:34:57 +07:00
<section
className="page-section bg-scroll light-content"
style={{
backgroundImage: "url(/assets/images/demo-modern/section-bg-3.jpeg)",
}}
>
<div className="bg-overlay bg-gradient-dark-alpha-2 d-none d-md-block" />
{/* End Desktop Overlay */}
{/* Mobile Overlay */}
<div className="bg-overlay bg-dark-1 opacity-09 d-md-none" />
{/* End Mobile Overlay */}
<div className="container position-relative">
<div className="row wow fadeInUp">
<div className="col-md-7 offset-md-5 col-lg-6 offset-lg-6 col-xl-5 offset-xl-7">
<h2 className="section-title mb-40 mb-sm-30">A Cancer Treatment Center of Excellence</h2>
<p className="mb-50 mb-sm-40">
We believe our patients deserve and demand the very best in timely treatments, personalized care,
professional competence, and advanced technology. We will achieve this vision by employing caring and
competent staff with excellent training, developing multidisciplinary collaborations, and using the
latest technology available in the most comfortable environment.
</p>
{/* Features List */}
<Cta3 />
{/* End Features List */}
</div>
</div>
</div>
</section>
2025-02-13 21:32:58 +07:00
<section className="my-5">
<Testimonials />
</section>
2025-02-01 06:57:24 +07:00
</>
);
}