"use client"; import React from "react"; import Image from "next/image"; import { FaPhone, FaFax, FaFacebook, FaMapMarkerAlt, FaClock } from "react-icons/fa"; export default function Footer() { const scrollToTop = (event: React.MouseEvent) => { event.preventDefault(); window.scrollTo({ top: 0, behavior: "smooth" }); }; return (
Cochise Oncology Logo

© {new Date().getFullYear()} All Rights Reserved

Privacy Policy

Contact Us

Business Hours

Monday - Friday: 8am - 5pm
Back to Top ↑
); }