"use client";

import Link from "next/link";

const ProgramVaksinasiDewasaBackSection = () => {
  return (
    <section className="bg-background-custom py-3 px-[70px]">
      <div className="max-w-7xl mx-auto">
        <Link
          href="/vaksinasi"
          className="inline-flex items-center gap-2.5 text-[#003dd8] font-medium text-[24px] hover:opacity-80 transition-opacity"
        >
          <svg
            width="48"
            height="48"
            viewBox="0 0 48 48"
            fill="none"
            xmlns="http://www.w3.org/2000/svg"
            className="flex-shrink-0"
            aria-label="Kembali"
          >
            <path
              d="M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z"
              stroke="#003dd8"
              strokeWidth="2"
              strokeLinecap="round"
              strokeLinejoin="round"
            />
            <path
              d="M28 32L20 24L28 16"
              stroke="#003dd8"
              strokeWidth="2"
              strokeLinecap="round"
              strokeLinejoin="round"
            />
          </svg>
          Kembali
        </Link>
      </div>
    </section>
  );
};

export default ProgramVaksinasiDewasaBackSection;
