diff --git a/public/assets/images/demo-modern/section-bg-3.jpeg b/public/assets/images/demo-modern/section-bg-3.jpeg new file mode 100644 index 0000000..596c142 Binary files /dev/null and b/public/assets/images/demo-modern/section-bg-3.jpeg differ diff --git a/public/assets/images/demo-modern/section-bg-3.jpg b/public/assets/images/demo-modern/section-bg-3.jpg deleted file mode 100644 index 260c70a..0000000 Binary files a/public/assets/images/demo-modern/section-bg-3.jpg and /dev/null differ diff --git a/src/components/Hero.tsx b/src/components/Hero.tsx index d26fe6b..6b6adbd 100644 --- a/src/components/Hero.tsx +++ b/src/components/Hero.tsx @@ -38,15 +38,6 @@ export default function Hero6() {
- {/* - - Volume On - - - - Pause - */} - {/* End Background Video */} {/* Home Section Content */}
@@ -64,13 +55,13 @@ export default function Hero6() {
Learn More - diff --git a/src/components/Homepage.tsx b/src/components/Homepage.tsx index 4e65442..cffbf6e 100644 --- a/src/components/Homepage.tsx +++ b/src/components/Homepage.tsx @@ -11,6 +11,7 @@ import Link from "next/link"; import TestimonialsDark from "./TestimonialsDark"; import ContactDark from "./ContactDark"; import { features4 } from "@/data/features"; +import Cta3 from "./cta3"; export default function homepage({ onePage = false, dark = false }) { return ( @@ -152,10 +153,37 @@ export default function homepage({ onePage = false, dark = false }) {
-
- {dark ? : } -
+
+
+
+ {/* End Desktop Overlay */} + {/* Mobile Overlay */} +
+ {/* End Mobile Overlay */} +
+
+
+

A Cancer Treatment Center of Excellence

+

+ 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. +

+ + {/* Features List */} + + {/* End Features List */} +
+
+
+
diff --git a/src/components/cta3.tsx b/src/components/cta3.tsx new file mode 100644 index 0000000..c36d7ea --- /dev/null +++ b/src/components/cta3.tsx @@ -0,0 +1,26 @@ +import { features2 } from "@/data/features"; +import React from "react"; + +export default function Cta3() { + return ( + <> +
+ {/* Features List Item */} + {features2.map((elm, i) => ( + <> +
+
+ +
+
+
{elm.text}
+ {elm.desc} +
+
+ + ))} + {/* End Features List Item */} +
+ + ); +} diff --git a/src/data/features.ts b/src/data/features.ts index d319279..c6f4b50 100644 --- a/src/data/features.ts +++ b/src/data/features.ts @@ -73,19 +73,23 @@ export const features = [ export const features2 = [ { id: 1, - text: "Business to business", + text: "Hope", + desc: "Founded in 2006, COCHISE ONCOLOGY became a leader in cancer treatment. Hope lives here, guiding patients through tough times.", }, { id: 2, - text: "Non-profit business", + text: "Strength", + desc: "We’ve greatly impacted Southern Arizona. Our facility is recognized for innovative and high-tech treatments.", }, { id: 3, - text: "Business to customer", + text: "Courage", + desc: "Fighting cancer requires immense courage. We believe no one should face this alone, so we provide whole patient care.", }, { id: 4, - text: "Ecommerce", + text: "Resilience", + desc: "adapt, recover, and grow stronger in the face of challenges and adversity", }, ];