export default function Footer() {
  return (
    <footer className="bg-blue-700 text-slate-100">
      <div
        className="
          max-w-7xl mx-auto
          px-6
          py-4 md:py-6
          text-sm
          flex flex-col gap-1
          items-center text-center
          md:flex-row md:justify-between md:text-left
        "
      >
        <span>© 2025 Locate Your Property</span>

        <span className="text-white">
          Your Private Property Partner in India
        </span>
      </div>
    </footer>
  );
}
