import Container from "@/components/ui/Container";
import { ButtonLink } from "@/components/ui/Button";

export default function CTASection({
  phone
}: {
  phone: string;
}) {
  return (
    <section className="py-6">
      <Container>
        <div className="rounded-xl2 bg-neutral-900 text-white px-8 py-14 text-center">
          <h2 className="font-display text-2xl md:text-3xl">
            Are you looking for
            <br />
            Personal Care Assistance?
          </h2>
          <p className="mt-4 text-sm text-neutral-300">
            Call us at <a href={`tel:${phone}`} className="underline">{phone}</a>
          </p>
          <div className="mt-6">
            <ButtonLink href="/about-us/contact-us" variant="outline">
              Contact Form
            </ButtonLink>
          </div>
        </div>
      </Container>
    </section>
  );
}
